17 lines
423 B
Ruby
17 lines
423 B
Ruby
require "test_helper"
|
|
|
|
class RegistrationsControllerTest < ActionDispatch::IntegrationTest
|
|
test "should get new" do
|
|
get sign_up_url
|
|
assert_response :success
|
|
end
|
|
|
|
test "should sign up" do
|
|
assert_difference("User.count") do
|
|
post sign_up_url, params: { email: "lazaronixon@hey.com", password: "Secret1*3*5*", password_confirmation: "Secret1*3*5*" }
|
|
end
|
|
|
|
assert_redirected_to root_url
|
|
end
|
|
end
|