require_relative "../config/environment"
require "rails/test_help"
require "webmock/minitest"
+require "minitest/focus" unless ENV["CI"]
WebMock.disable_net_connect!(:allow_localhost => true)
end
end
- def sign_in_as(user)
- visit login_path
- 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)
get login_path
post login_path, :params => { :username => user.display_name, :password => "test" }
Settings.merge!(saved_settings)
end
- def with_user_account_deletion_delay(value)
+ def with_user_account_deletion_delay(value, &block)
freeze_time
- default_value = Settings.user_account_deletion_delay
- Settings.user_account_deletion_delay = value
- yield
-
- Settings.user_account_deletion_delay = default_value
+ with_settings(:user_account_deletion_delay => value, &block)
+ ensure
unfreeze_time
end
end