debian-mirror-gitlab/features/steps/dashboard/starred_projects.rb

16 lines
411 B
Ruby
Raw Normal View History

2015-04-26 12:48:37 +05:30
class Spinach::Features::DashboardStarredProjects < Spinach::FeatureSteps
include SharedAuthentication
include SharedPaths
include SharedProject
step 'I starred project "Community"' do
current_user.toggle_star(Project.find_by(name: 'Community'))
end
step 'I should not see project "Shop"' do
2015-09-25 12:07:36 +05:30
page.within '.projects-list' do
2015-09-11 14:41:01 +05:30
expect(page).not_to have_content('Shop')
2015-04-26 12:48:37 +05:30
end
end
end