You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 3, 2018. It is now read-only.
Something like this needs to be added and auto-injected into the test suite:
classMiniTest::Rails::ActionDispatch::IntegrationTest# Public: Login helper for the thincloud-auth forms using Capybara.## identity - Thincloud::Authentication identity object## Returns the Capybara session after clicking the login button.deflogin(identity=nil)identity ||= create(:identity)visitlogin_pathwithin("#login form:first-child")dofill_in"auth_key",with: identity.emailfill_in"password",with: identity.passwordclick_button"Login"endidentityendend
Something like this needs to be added and auto-injected into the test suite: