1 use Test::More tests => 2;
 
   3 use_ok 'SL::DB::Helper::ALL';
 
   4 use_ok 'SL::DB::Helper::Mappings';
 
   8 is db('part'), 'SL::DB::Part';
 
   9 is db('parts'), 'SL::DB::Manager::Part';
 
  11 is db('order'), 'SL::DB::Order';
 
  12 is db('orders'), 'SL::DB::Manager::Order';
 
  14 is db('gl'), 'SL::DB::GLTransaction';
 
  15 is db('gls'), 'SL::DB::Manager::GLTransaction';
 
  17 is db('ar'), 'SL::DB::Invoice';
 
  18 is db('ars'), 'SL::DB::Manager::Invoice';
 
  20 is db('Unit'), 'SL::DB::Unit';
 
  21 is db('Units'), 'SL::DB::Manager::Unit';