summaryrefslogtreecommitdiff
path: root/features/steps/dashboard/starred_projects.rb
diff options
context:
space:
mode:
Diffstat (limited to 'features/steps/dashboard/starred_projects.rb')
-rw-r--r--features/steps/dashboard/starred_projects.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/features/steps/dashboard/starred_projects.rb b/features/steps/dashboard/starred_projects.rb
deleted file mode 100644
index c33813e550b..00000000000
--- a/features/steps/dashboard/starred_projects.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-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
- page.within '.projects-list' do
- expect(page).not_to have_content('Shop')
- end
- end
-end