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
path: root/qa/qa.rb
diff options
context:
space:
mode:
authorZeff Morgan <zeff.morgan@gmail.com>2018-12-04 09:03:58 +0300
committerZeff Morgan <zeff.morgan@gmail.com>2018-12-11 22:06:22 +0300
commit12c358f1b781fc6401eceee80237232bd0bb005a (patch)
tree57a40a9aaa873f06e71a2822fd8a1802287d3e29 /qa/qa.rb
parentbdcd37610a8a5eec13b0bb3b2d86f9032a7c4083 (diff)
Add tests for plain diff/email patch options
Add spec file using before(:context) to reduce test time. With testing almost identical things, unnecessary to make them completely atomic. Includes two helper methods. Since the raw_content method is the only function needed on that page, created the method in the spec instead of adding another page object. Setup new project/commit page object and update project/show to add go_to_commit method. The go_to_commit method is near duplicate of go_to_file method, but decided to split them off to reduce overall refactoring and simplify language. Also add selectors to commit box partial and update qa.rb to load new page object.
Diffstat (limited to 'qa/qa.rb')
-rw-r--r--qa/qa.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/qa/qa.rb b/qa/qa.rb
index 22af365d65a..bf05b6b53ca 100644
--- a/qa/qa.rb
+++ b/qa/qa.rb
@@ -158,6 +158,10 @@ module QA
autoload :Activity, 'qa/page/project/activity'
autoload :Menu, 'qa/page/project/menu'
+ module Commit
+ autoload :Show, 'qa/page/project/commit/show'
+ end
+
module Import
autoload :Github, 'qa/page/project/import/github'
end