mirror of
https://github.com/heartcombo/devise.git
synced 2022-11-09 12:18:31 -05:00
10 lines
149 B
Ruby
10 lines
149 B
Ruby
require 'rails/test_help'
|
|
|
|
DataMapper.auto_migrate!
|
|
|
|
class ActiveSupport::TestCase
|
|
setup do
|
|
User.all.destroy!
|
|
Admin.all.destroy!
|
|
end
|
|
end
|