summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--features/project/public.feature8
-rw-r--r--features/steps/project/public.rb9
2 files changed, 0 insertions, 17 deletions
diff --git a/features/project/public.feature b/features/project/public.feature
deleted file mode 100644
index c5a9da14c54..00000000000
--- a/features/project/public.feature
+++ /dev/null
@@ -1,8 +0,0 @@
-Feature: Public Projects
- Background:
- Given I sign in as a user
-
- Scenario: I should see the list of public projects
- When I visit the public projects area
- Then I should see the list of public projects
-
diff --git a/features/steps/project/public.rb b/features/steps/project/public.rb
deleted file mode 100644
index 7063e7d56ae..00000000000
--- a/features/steps/project/public.rb
+++ /dev/null
@@ -1,9 +0,0 @@
-class PublicProjects < Spinach::FeatureSteps
- include SharedAuthentication
- include SharedProject
- include SharedPaths
-
- Then 'I should see the list of public projects' do
- page.should have_content "Public Projects"
- end
-end