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
On the README file, there is a section that says only the :deletion strategy is available on mongoid. However, it seems like it is quite the opposite, only the :truncation strategy is available.
I tried to use the :deletion strategy and the following error message is displayed:
> DatabaseCleaner[:mongoid].strategy=:deletionDatabaseCleaner::UnknownStrategySpecified: The'deletion'strategydoes not existforthemongoidORM!Availablestrategies: truncationfrom/Users/victor/.rvm/gems/ruby-2.6.5@pocket/gems/database_cleaner-1.8.4/lib/database_cleaner/base.rb:150:in`rescue in require_orm_strategy'Caused by LoadError: cannot load such file -- database_cleaner/mongoid/deletionfrom /Users/victor/.rvm/gems/ruby-2.6.5@pocket/gems/activesupport-6.0.2.1/lib/active_support/dependencies.rb:325:in `require'Caused by NameError: uninitialized constant DatabaseCleaner::Mongoid::Deletionfrom /Users/victor/.rvm/gems/ruby-2.6.5@pocket/gems/database_cleaner-1.8.4/lib/database_cleaner/base.rb:135:in `const_get'
Is the README outdated?
Please take a look at the README section below...
👇
Supported Strategies
The mongoid adapter only has one strategy: the deletion strategy.
The text was updated successfully, but these errors were encountered:
@Victorcorcos Yes, you are correct. The behavior of the most recently released version of database_cleaner-mongoid (v1.x) does not match the README on Github because the master branch is tracking the upcoming v2.0 release, which makes some breaking changes, including renaming the Mongoid strategy from :truncation to :deletion. If you would like to open PR to update the README with a note about this, I'd merge it. You can copy the notice from the main database_cleaner repo.
On the README file, there is a section that says only the
:deletion
strategy is available onmongoid
. However, it seems like it is quite the opposite, only the:truncation
strategy is available.I tried to use the
:deletion
strategy and the following error message is displayed:Is the README outdated?
Please take a look at the README section below...
👇
Supported Strategies
The mongoid adapter only has one strategy: the deletion strategy.
The text was updated successfully, but these errors were encountered: