changed CD to ->table(\"cd")
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / CD.pm
index ec6ab24..8bcbcee 100644 (file)
@@ -3,7 +3,10 @@ package # hide from PAUSE
 
 use base qw/DBICTest::BaseResult/;
 
-__PACKAGE__->table('cd');
+# this tests table name as scalar ref
+# DO NOT REMOVE THE \
+__PACKAGE__->table(\'cd');
+
 __PACKAGE__->add_columns(
   'cdid' => {
     data_type => 'integer',