Commit 659ec83b authored by Sean McGivern's avatar Sean McGivern

Merge branch 'ce-rc/move-more-ee-only-spec-files' into 'master'

Port some changes from gitlab-ee!4532 back to CE

See merge request gitlab-org/gitlab-ce!17120
parents 2b331369 d73458bb
...@@ -20,15 +20,16 @@ Dir["#{Rails.root}/features/steps/shared/*.rb"].each { |file| require file } ...@@ -20,15 +20,16 @@ Dir["#{Rails.root}/features/steps/shared/*.rb"].each { |file| require file }
Spinach.hooks.before_run do Spinach.hooks.before_run do
include RSpec::Mocks::ExampleMethods include RSpec::Mocks::ExampleMethods
include ActiveJob::TestHelper
include FactoryBot::Syntax::Methods
include GitlabRoutingHelper
RSpec::Mocks.setup RSpec::Mocks.setup
TestEnv.init(mailer: false) TestEnv.init(mailer: false)
# skip pre-receive hook check so we can use # skip pre-receive hook check so we can use
# web editor and merge # web editor and merge
TestEnv.disable_pre_receive TestEnv.disable_pre_receive
include FactoryBot::Syntax::Methods
include GitlabRoutingHelper
end end
Spinach.hooks.after_scenario do |scenario_data, step_definitions| Spinach.hooks.after_scenario do |scenario_data, step_definitions|
......
module FixtureHelpers module FixtureHelpers
def fixture_file(filename) def fixture_file(filename, dir: '')
return '' if filename.blank? return '' if filename.blank?
File.read(expand_fixture_path(filename)) File.read(expand_fixture_path(filename, dir: dir))
end end
def expand_fixture_path(filename) def expand_fixture_path(filename, dir: '')
File.expand_path(Rails.root.join('spec/fixtures/', filename)) File.expand_path(Rails.root.join(dir, 'spec', 'fixtures', filename))
end end
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment