class DatabaseCleaner::Base

def orm_strategy(strategy)

def orm_strategy(strategy)
  strategy_module_name = strategy.to_s.capitalize
  orm_module.const_get(strategy_module_name)
rescue NameError
  raise UnknownStrategySpecified, "The '#{strategy}' strategy does not exist for the #{orm} ORM!  Available strategies: #{orm_module.available_strategies.join(', ')}"
end