mirror of
https://github.com/heartcombo/devise.git
synced 2026-04-28 03:00:29 -04:00
11 lines
149 B
Ruby
11 lines
149 B
Ruby
require 'rails/test_help'
|
|
|
|
DataMapper.auto_migrate!
|
|
|
|
class ActiveSupport::TestCase
|
|
setup do
|
|
User.all.destroy!
|
|
Admin.all.destroy!
|
|
end
|
|
end
|