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:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-07-10 15:08:58 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-07-10 15:08:58 +0300
commit215001eca7ababe4c617a04a37d307a97353d6e0 (patch)
tree50c65a921667c43d58f09cd1e900d4854285adcc /gems/gitlab-schema-validation/spec/spec_helper.rb
parent4a6c33b8a49bea08205a77d53d4425b9c23845b4 (diff)
Add latest changes from gitlab-org/gitlab@master
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