X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/c8fc2218e5e342ad7afc9409974fd48a733ba94b..69fbf2100b445eb48f82a04a4765d481a8725e1e:/test/test_helper.rb diff --git a/test/test_helper.rb b/test/test_helper.rb index 68749c0f7..222e65764 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -243,9 +243,11 @@ module ActiveSupport def sign_in_as(user) visit login_path - fill_in "username", :with => user.email - fill_in "password", :with => "test" - click_button "Login", :match => :first + within "form", :text => "Email Address or Username" do + fill_in "username", :with => user.email + fill_in "password", :with => "test" + click_on "Login" + end end def session_for(user) @@ -371,5 +373,16 @@ module ActiveSupport el << tag_el end end + + def with_user_account_deletion_delay(value) + freeze_time + default_value = Settings.user_account_deletion_delay + Settings.user_account_deletion_delay = value + + yield + + Settings.user_account_deletion_delay = default_value + unfreeze_time + end end end