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
diff options
context:
space:
mode:
Diffstat (limited to 'gems/gitlab-schema-validation/spec/spec_helper.rb')
-rw-r--r--gems/gitlab-schema-validation/spec/spec_helper.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/gems/gitlab-schema-validation/spec/spec_helper.rb b/gems/gitlab-schema-validation/spec/spec_helper.rb
index c2def02dd79..c11c5021e3b 100644
--- a/gems/gitlab-schema-validation/spec/spec_helper.rb
+++ b/gems/gitlab-schema-validation/spec/spec_helper.rb
@@ -1,6 +1,7 @@
# frozen_string_literal: true
require "gitlab/schema/validation"
+require 'rspec-parameterized'
RSpec.configure do |config|
# Enable flags like --only-failures and --next-failure
@@ -9,6 +10,8 @@ RSpec.configure do |config|
# Disable RSpec exposing methods globally on `Module` and `main`
config.disable_monkey_patching!
+ Dir['./spec/support/**/*.rb'].each { |f| require f }
+
config.expect_with :rspec do |c|
c.syntax = :expect
end