diff options
author | Yorick Peterse <yorickpeterse@gmail.com> | 2019-08-01 14:41:37 +0200 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2019-08-19 09:43:37 +0200 |
commit | 6aa215aaea146f21eb5a88a511f7bbe84ad31ef5 (patch) | |
tree | 887b89ae6dcfd88ac10f6277215048c46447008d /qa | |
parent | 224db2f8901964a34851018dd93b962a45a3032f (diff) | |
download | gitlab-ce-6aa215aaea146f21eb5a88a511f7bbe84ad31ef5.tar.gz |
Support X_if_ee methods for QA tests
For the QA tests to use the new injection methods, we must require the
initializer and ensure that the "constantize" method is available.
Diffstat (limited to 'qa')
-rw-r--r-- | qa/qa.rb | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -4,6 +4,9 @@ $: << File.expand_path(File.dirname(__FILE__)) Encoding.default_external = 'UTF-8' +require_relative '../lib/gitlab' +require_relative '../config/initializers/0_inject_enterprise_edition_module' + module QA ## # GitLab QA runtime classes, mostly singletons. |