summaryrefslogtreecommitdiff
path: root/qa/qa/page/main/projects.rb
diff options
context:
space:
mode:
Diffstat (limited to 'qa/qa/page/main/projects.rb')
-rw-r--r--qa/qa/page/main/projects.rb16
1 files changed, 0 insertions, 16 deletions
diff --git a/qa/qa/page/main/projects.rb b/qa/qa/page/main/projects.rb
deleted file mode 100644
index 28d3a424022..00000000000
--- a/qa/qa/page/main/projects.rb
+++ /dev/null
@@ -1,16 +0,0 @@
-module QA
- module Page
- module Main
- class Projects < Page::Base
- def go_to_new_project
- ##
- # There are 'New Project' and 'New project' buttons on the projects
- # page, so we can't use `click_on`.
- #
- button = find('a', text: /^new project$/i)
- button.click
- end
- end
- end
- end
-end