]> git.openstreetmap.org Git - rails.git/blob - test/system/user_signup_test.rb
Merge pull request #3104 from fredrik-lindseth/patch-1
[rails.git] / test / system / user_signup_test.rb
1 require "application_system_test_case"
2
3 class UserSignupTest < ApplicationSystemTestCase
4   test "Sign up from login page" do
5     visit login_path
6
7     click_on "Register now"
8
9     assert page.has_content? "Confirm Password"
10   end
11 end