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 'spec/support/factory_bot.rb')
-rw-r--r--spec/support/factory_bot.rb9
1 files changed, 5 insertions, 4 deletions
diff --git a/spec/support/factory_bot.rb b/spec/support/factory_bot.rb
index d30098a5cc0..00aa54990ef 100644
--- a/spec/support/factory_bot.rb
+++ b/spec/support/factory_bot.rb
@@ -4,13 +4,14 @@ FactoryBot.define do
after(:build) do |object, _|
next unless object.respond_to?(:factory_bot_built=)
+ # This will help the PreventCrossDatabaseModification to temporarily
+ # allow the object table when it's saved later.
object.factory_bot_built = true
end
- before(:create) do |object, _|
- next unless object.respond_to?(:factory_bot_built=)
-
- object.factory_bot_built = false
+ before(:create) do |_object, _|
+ Thread.current[:factory_bot_objects] ||= 0
+ Thread.current[:factory_bot_objects] += 1
end
end