gitlabhq/spec/support/login.rb

31 lines
765 B
Ruby
Raw Normal View History

2011-10-13 03:00:00 +02:00
module LoginMacros
def login_as role
@user = User.create(:email => "user#{User.count}@mail.com",
:name => "John Smith",
:password => "123456",
2011-10-21 19:04:41 +02:00
:password_confirmation => "123456",
:skype => 'user_skype')
2011-10-13 03:00:00 +02:00
if role == :admin
@user.admin = true
@user.save!
end
visit new_user_session_path
fill_in "Email", :with => @user.email
fill_in "Password", :with => "123456"
click_button "Sign in"
end
def login_with(user)
visit new_user_session_path
fill_in "Email", :with => user.email
fill_in "Password", :with => "123456"
click_button "Sign in"
end
def logout
click_link "Logout" rescue nil
end
end