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

star.rb « project « steps « features - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9f7c748a3b78ff3bae147189db11af8c430908e2 (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
30
31
32
33
34
35
36
37
class Spinach::Features::ProjectStar < Spinach::FeatureSteps
  include SharedAuthentication
  include SharedProject
  include SharedPaths
  include SharedUser

  step "The project has no stars" do
    expect(page).not_to have_content '.toggle-star'
  end

  step "The project has 0 stars" do
    has_n_stars(0)
  end

  step "The project has 1 star" do
    has_n_stars(1)
  end

  step "The project has 2 stars" do
    has_n_stars(2)
  end

  # Requires @javascript
  step "I click on the star toggle button" do
    find(".star-btn", visible: true).click
  end

  step 'I redirected to sign in page' do
    expect(current_path).to eq new_user_session_path
  end

  protected

  def has_n_stars(n)
    expect(page).to have_css(".star-count", text: n, visible: true)
  end
end