diff options
author | azul <azul@riseup.net> | 2017-11-13 04:44:41 -0800 |
---|---|---|
committer | azul <azul@riseup.net> | 2017-11-13 04:44:41 -0800 |
commit | f250a11b4fd98bb9f4ef50c501b72f5ae2a97d1d (patch) | |
tree | e73c759f133da8bddd68ed8bd8168b1919f67989 /test/integration/browser/alternate_email_test.rb | |
parent | a20a1c1671d3833c7f26b678f3e476b26126c8ca (diff) | |
parent | 028376fe1ea7638f0119ba9614629f66453d206f (diff) |
Merge branch 'fix/8796-alternate-email' into 'master'
fix: alternate email dialogue
Closes #8796
See merge request leap/webapp!53
Diffstat (limited to 'test/integration/browser/alternate_email_test.rb')
-rw-r--r-- | test/integration/browser/alternate_email_test.rb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/test/integration/browser/alternate_email_test.rb b/test/integration/browser/alternate_email_test.rb new file mode 100644 index 0000000..fc58fb4 --- /dev/null +++ b/test/integration/browser/alternate_email_test.rb @@ -0,0 +1,25 @@ +require 'test_helper' + +class AlternateEmailTest < BrowserIntegrationTest + test "change alternate email" do + username, password = submit_signup + click_on 'Account Settings' + within(".edit_user") do + fill_in 'user_contact_email', with: 'test@leap.se' + click_on 'Save' + end + assert page.has_content?('Changes saved successfully') + assert_equal 'test@leap.se', + page.find('#user_contact_email').value + end + + test "change alternate email to invalid" do + username, password = submit_signup + click_on 'Account Settings' + within(".edit_user") do + fill_in 'user_contact_email', with: 'test@invalid' + click_on 'Save' + assert page.has_content?('is invalid') + end + end +end |