Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'features/steps/project/graph.rb')
-rw-r--r--features/steps/project/graph.rb23
1 files changed, 0 insertions, 23 deletions
diff --git a/features/steps/project/graph.rb b/features/steps/project/graph.rb
deleted file mode 100644
index a2807c340f6..00000000000
--- a/features/steps/project/graph.rb
+++ /dev/null
@@ -1,23 +0,0 @@
-class Spinach::Features::ProjectGraph < Spinach::FeatureSteps
- include SharedAuthentication
- include SharedProject
-
- step 'page should have graphs' do
- page.should have_selector ".stat-graph"
- end
-
- When 'I visit project "Shop" graph page' do
- project = Project.find_by(name: "Shop")
- visit namespace_project_graph_path(project.namespace, project, "master")
- end
-
- step 'I visit project "Shop" commits graph page' do
- project = Project.find_by(name: "Shop")
- visit commits_namespace_project_graph_path(project.namespace, project, "master")
- end
-
- step 'page should have commits graphs' do
- page.should have_content "Commit statistics for master"
- page.should have_content "Commits per day of month"
- end
-end