summaryrefslogtreecommitdiff
path: root/test/integration/browser/alternate_email_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/browser/alternate_email_test.rb')
-rw-r--r--test/integration/browser/alternate_email_test.rb25
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