- Add preferred provider for authorization to login and signup pages. To use, the 3rd party application would have to add `preferred_provider=...` parameter to OAuth2 authorization request. - Resize 3rd party provider icons - Add "login to authorize" heading to login and signup screens
11 lines
219 B
Ruby
11 lines
219 B
Ruby
require "application_system_test_case"
|
|
|
|
class UserSignupTest < ApplicationSystemTestCase
|
|
test "Sign up from login page" do
|
|
visit login_path
|
|
|
|
click_on "Sign up"
|
|
|
|
assert_content "Confirm Password"
|
|
end
|
|
end
|