gitlabhq/features/steps/shared/authentication.rb
2012-09-10 08:35:03 -07:00

11 lines
198 B
Ruby

require Rails.root.join('spec', 'support', 'login_helpers')
module SharedAuthentication
include Spinach::DSL
include LoginHelpers
Given 'I sign in as a user' do
login_as :user
end
end