-
Notifications
You must be signed in to change notification settings - Fork 11
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
DBs not cleaned when using multiple DBs after upgrade to 2.x.x from 1.8.0 #18
Comments
Same here, stopped working. Pasting trace: line 20 of test_helper.rb is this:
|
@etagwerker are you able to reproduce this issue? |
This looks like a different issue. In my case it is not raising any error... |
Hello, When you use following example before :each do
DatabaseCleaner[:sequel, db: DEFAULT_DB].start
DatabaseCleaner[:sequel, db: SHARED_DB].start
end
after :each do
DatabaseCleaner[:sequel, db: DEFAULT_DB].clean
DatabaseCleaner[:sequel, db: SHARED_DB].clean
end Then database cleaner is not using |
For some reason
database_cleaner-sequel
stopped working after migrating to v2.0.0
.ENV:
ruby 3.1.2
,sequel 5.58.0
,minitest 5.16.2
Working configuration for
1.8.0
was:Current configuration for
2.0.0
is:Just to be clear, it's not raising any error, but basically databases are not cleaned at all...
The text was updated successfully, but these errors were encountered: