11 lines
234 B
Ruby
11 lines
234 B
Ruby
require "application_system_test_case"
|
|
|
|
class UserSignupTest < ApplicationSystemTestCase
|
|
test "Sign up from login page" do
|
|
visit login_path
|
|
|
|
click_on "Register now"
|
|
|
|
assert page.has_content? "Confirm Password"
|
|
end
|
|
end
|