-
-
Notifications
You must be signed in to change notification settings - Fork 265
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NoTenantSet
error raised within an ActsAsTenant.without_tenant
block (RSpec + Rails)
#338
Comments
NoTenantSet
error raised within an ActsAsTenant.without_tenant
blockNoTenantSet
error raised within an ActsAsTenant.without_tenant
block (RSpec + Rails)
This happens because of a bug introduced in RSpec v6.1.3. Temporarily locking your Gemfile to |
Amazing, thanks @pond! |
@its-fern Unfortunately things were going really well until a dev stepped in and seems to say that this bug is minor; we're holding it wrong by using hooks as they've been documented in RSpec. I'm not sure I agree, but you well might. Please could you check Jon Rowe's comment and vote accordingly? If ultimately I'm in the minority in my assessment of what should be done here, then of course, the community wins. EDITED TO ADD: They're still interested in a resolution PR, so I'll work on that today (NZ time). |
Currently running ActsAsTenant v
1.0.1
on a Rails 7.1 app. We use rspec for testing and recently upgradedrspec-rails
from6.1.2
to6.1.3
. We started running intoNoTenantSet
errors on this upgrade when we were not before.For some context, we have a helper set up that allows devs to include a tag in the rspec context to disable the tenant check:
Devs can then write specs that ignore the tenant check like so:
I did some digging and I think this might be related to this PR rspec/rspec-rails#2752 (full changelog here). The
ActsAsTenant.unscoped?
flag is being reset somehow (confirmed this by stepping through the code) so this code block raises:acts_as_tenant/lib/acts_as_tenant/model_extensions.rb
Lines 20 to 22 in 7e3bd8a
Any help is appreciated here, and I'm happy to provide more info where I can!
The text was updated successfully, but these errors were encountered: