Welcome to mirror list, hosted at ThFree Co, Russian Federation.

login.rb « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 09f64f9e3c30e69d0cd04b180c1432e7162a610d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
module LoginMacros
  def login_as role
    @user = User.create(:email => "user#{User.count}@mail.com", 
                        :name => "John Smith",
                        :password => "123456",
                        :password_confirmation => "123456")
 
    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