classSpinach::Features::ProjectStar<Spinach::FeatureStepsincludeSharedAuthenticationincludeSharedProjectincludeSharedPathsincludeSharedUserstep"The project has 0 stars"dohas_n_stars(0)endstep"The project has 1 star"dohas_n_stars(1)endstep"The project has 2 stars"dohas_n_stars(2)end# Requires @javascriptstep"I click on the star toggle button"dopage.find(".star .toggle",visible: true).clickendprotecteddefhas_n_stars(n)expect(page).tohave_css(".star .count",text: /^#{n}$/,visible: true)endend