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:
authorLin Jen-Shin <godfat@godfat.org>2018-06-14 16:04:44 +0300
committerLin Jen-Shin <godfat@godfat.org>2018-06-21 11:32:07 +0300
commit562f357ba5cf59f8325a87b9fba178e4c9830ad5 (patch)
tree7e35c58c3296497e5f3f34dd9c727c4c57b91c87 /spec/spec_helper.rb
parent7c11ed8c916a10f6d9c32635986008b48410531f (diff)
Implement `expect_next_instance_of` and use it
We need this because `expect_any_instance_of` doesn't work on prepended models. Now we could use the same code between CE/EE
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 dac609e2545..fdce8e84620 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -69,6 +69,7 @@ RSpec.configure do |config|
config.include StubFeatureFlags
config.include StubGitlabCalls
config.include StubGitlabData
+ config.include ExpectNextInstanceOf
config.include TestEnv
config.include Devise::Test::ControllerHelpers, type: :controller
config.include Devise::Test::IntegrationHelpers, type: :feature