module ActiveSupport
class TestCase
- include FactoryGirl::Syntax::Methods
+ include FactoryBot::Syntax::Methods
##
# takes a block which is executed in the context of a different
end
end
end
+
+ def sign_in_as(user)
+ stub_hostip_requests
+ visit login_path
+ fill_in "username", :with => user.email
+ fill_in "password", :with => "test"
+ click_on "Login", :match => :first
+ end
end
end