Merge remote-tracking branch 'upstream/pull/3157'

This commit is contained in:
Tom Hughes 2021-03-31 16:45:24 +01:00
commit 41f95466fa

View file

@ -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