You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to disable our Bullet gem when FactoryBot is building instances and creating records, because I don't care about n+1 problems inside my test setup.
The problem is, that there seems to be no callback called before(:build). I had a look into the source code but didn't find the right place to patch it.
Any help is appreciated where to start, so I maybe I can try for a PR.
Desired solution
I want to be able to use something like this
FactoryBot.define do
before(:build) do |record|
Bullet.enable = false
end
after(:create) do |record|
Bullet.enable = true
end
end
The text was updated successfully, but these errors were encountered:
Problem this feature will solve
I want to disable our
Bullet
gem when FactoryBot is building instances and creating records, because I don't care about n+1 problems inside my test setup.The problem is, that there seems to be no callback called
before(:build)
. I had a look into the source code but didn't find the right place to patch it.Any help is appreciated where to start, so I maybe I can try for a PR.
Desired solution
I want to be able to use something like this
The text was updated successfully, but these errors were encountered: