14 lines
286 B
Ruby
14 lines
286 B
Ruby
require "test_helper"
|
|
|
|
class RegistrationsControllerTest < ActionDispatch::IntegrationTest
|
|
test "should get new" do
|
|
get registrations_new_url
|
|
assert_response :success
|
|
end
|
|
|
|
test "should get create" do
|
|
get registrations_create_url
|
|
assert_response :success
|
|
end
|
|
end
|