15 lines
311 B
Ruby
15 lines
311 B
Ruby
|
require "test_helper"
|
||
|
|
||
|
class UsersControllerTest < ActionDispatch::IntegrationTest
|
||
|
test "should get new" do
|
||
|
get signup_path
|
||
|
assert_response :success
|
||
|
end
|
||
|
|
||
|
test "Should get sign up title" do
|
||
|
get signup_path
|
||
|
assert_response :success
|
||
|
assert_select "title", full_title("Sign up")
|
||
|
end
|
||
|
end
|