gitlab-org--gitlab-foss/features/steps/project/star.rb

34 lines
683 B
Ruby
Raw Normal View History

2014-06-26 07:49:14 +00:00
class Spinach::Features::ProjectStar < Spinach::FeatureSteps
include SharedAuthentication
include SharedProject
include SharedPaths
include SharedUser
step "The project has no stars" do
page.should_not have_content '.star-buttons'
end
2014-06-26 07:49:14 +00:00
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
2014-09-24 06:28:41 +00:00
find(".star .toggle", visible: true).click
2014-06-26 07:49:14 +00:00
end
protected
def has_n_stars(n)
expect(page).to have_css(".star .count", text: /^#{n}$/, visible: true)
end
end