gitlab-org--gitlab-foss/spec/support/login.rb

31 lines
780 B
Ruby
Raw Normal View History

2011-10-08 21:36:38 +00:00
module LoginMacros
def login_as role
@user = User.create(:email => "user#{User.count}@mail.com",
2011-10-08 21:36:38 +00:00
:name => "John Smith",
:password => "123456",
:password_confirmation => "123456",
:skype => 'user_skype')
if role == :admin
2011-10-08 21:36:38 +00:00
@user.admin = true
@user.save!
end
visit new_user_session_path
2011-11-01 20:51:20 +00:00
fill_in "user_email", :with => @user.email
fill_in "user_password", :with => "123456"
2011-10-08 21:36:38 +00:00
click_button "Sign in"
end
def login_with(user)
visit new_user_session_path
2011-11-01 20:51:20 +00:00
fill_in "user_email", :with => user.email
fill_in "user_password", :with => "123456"
2011-10-08 21:36:38 +00:00
click_button "Sign in"
end
2011-10-08 21:36:38 +00:00
def logout
click_link "Logout" rescue nil
end
end