summaryrefslogtreecommitdiff
path: root/qa/qa.rb
diff options
context:
space:
mode:
authorLin Jen-Shin <godfat@godfat.org>2018-01-30 14:50:17 +0000
committerLin Jen-Shin <godfat@godfat.org>2018-01-30 14:50:17 +0000
commit07557a946bac1b596a28293d39e7bd2581ff828b (patch)
treef725f935880b122862880f9f18d18fb74a7f758b /qa/qa.rb
parentbf01452cc361842dab7442a9ad868213d53bd212 (diff)
parent03f386c2b20f95272e4846f5ecab54fd8b2566e0 (diff)
downloadgitlab-ce-qa-define-selectors.tar.gz
Merge branch 'master' into 'qa-define-selectors'qa-define-selectors
# Conflicts: # qa/qa/page/group/show.rb
Diffstat (limited to 'qa/qa.rb')
-rw-r--r--qa/qa.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/qa/qa.rb b/qa/qa.rb
index 180ee778fd4..bd24f241747 100644
--- a/qa/qa.rb
+++ b/qa/qa.rb
@@ -27,6 +27,7 @@ module QA
module Resource
autoload :Sandbox, 'qa/factory/resource/sandbox'
autoload :Group, 'qa/factory/resource/group'
+ autoload :Issue, 'qa/factory/resource/issue'
autoload :Project, 'qa/factory/resource/project'
autoload :MergeRequest, 'qa/factory/resource/merge_request'
autoload :DeployKey, 'qa/factory/resource/deploy_key'
@@ -125,6 +126,12 @@ module QA
autoload :SecretVariables, 'qa/page/project/settings/secret_variables'
autoload :Runners, 'qa/page/project/settings/runners'
end
+
+ module Issue
+ autoload :New, 'qa/page/project/issue/new'
+ autoload :Show, 'qa/page/project/issue/show'
+ autoload :Index, 'qa/page/project/issue/index'
+ end
end
module Profile