]> git.openstreetmap.org Git - rails.git/commitdiff
Merge remote-tracking branch 'upstream/pull/3157'
authorTom Hughes <tom@compton.nu>
Wed, 31 Mar 2021 15:45:24 +0000 (16:45 +0100)
committerTom Hughes <tom@compton.nu>
Wed, 31 Mar 2021 15:45:24 +0000 (16:45 +0100)
test/system/user_signup_test.rb [new file with mode: 0644]

diff --git a/test/system/user_signup_test.rb b/test/system/user_signup_test.rb
new file mode 100644 (file)
index 0000000..d4da014
--- /dev/null
@@ -0,0 +1,11 @@
+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