summaryrefslogtreecommitdiff
path: root/spec/spec_helper.rb
diff options
context:
space:
mode:
authorThong Kuah <tkuah@gitlab.com>2018-08-16 21:08:38 +1200
committerThong Kuah <tkuah@gitlab.com>2018-08-31 10:23:57 +1200
commit99e185cb91a0a1c5df0ed5f545bd83de718e5eb9 (patch)
treed4071323e6ff49c89944cce885559b72c83ac4a4 /spec/spec_helper.rb
parentb8856d662942f54d7353e69505be08deb9b1d575 (diff)
downloadgitlab-ce-99e185cb91a0a1c5df0ed5f545bd83de718e5eb9.tar.gz
Move fixture_path out of support/rspec file which is used by fast_spec_helper, so that fast specs can be run on its own again.
Move `fixture_path` config together with use_transactional_fixtures and use_instantiated_fixtures. These settings are all added by rspec-rails https://github.com/rspec/rspec-rails/blob/8c6c9590b94916199950dc8a91a9741d3be30c7c/lib/rspec/rails/configuration.rb#L65-L67
Diffstat (limited to 'spec/spec_helper.rb')
-rw-r--r--spec/spec_helper.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index a15a46a9534..c4bb1c13f2e 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -42,6 +42,7 @@ Dir[Rails.root.join("spec/support/**/*.rb")].each { |f| require f }
RSpec.configure do |config|
config.use_transactional_fixtures = false
config.use_instantiated_fixtures = false
+ config.fixture_path = Rails.root
config.verbose_retry = true
config.display_try_failure_messages = true