mirror of
https://github.com/heartcombo/devise.git
synced 2022-11-09 12:18:31 -05:00
10 lines
210 B
Ruby
10 lines
210 B
Ruby
|
Mongoid.configure do |config|
|
||
|
config.master = Mongo::Connection.new('127.0.0.1', 27017).db("devise-test-suite")
|
||
|
end
|
||
|
|
||
|
class ActiveSupport::TestCase
|
||
|
setup do
|
||
|
User.delete_all
|
||
|
Admin.delete_all
|
||
|
end
|
||
|
end
|