mirror of
https://github.com/DatabaseCleaner/database_cleaner
synced 2023-03-27 23:22:03 -04:00
8 lines
273 B
Ruby
8 lines
273 B
Ruby
$LOAD_PATH.unshift(File.expand_path(File.dirname(__FILE__))) unless $LOAD_PATH.include?(File.expand_path(File.dirname(__FILE__)))
|
|
require 'database_cleaner/configuration'
|
|
|
|
module DatabaseCleaner
|
|
def self.can_detect_orm?
|
|
DatabaseCleaner::Base.autodetect_orm
|
|
end
|
|
end
|