Escape filename so that t\9... won't look like octal
Arthur Axel "fREW" Schmidt [Thu, 11 Jun 2009 20:02:11 +0000 (20:02 +0000)]
t/95sql_maker.t

index d99d201..c4a65a2 100644 (file)
@@ -51,6 +51,7 @@ my $sql_maker = $schema->storage->sql_maker;
 
 # Make sure the carp/croak override in SQLA works (via SQLAHacks)
 my $file = __FILE__;
+$file = "\Q$file\E";
 throws_ok (sub {
   $schema->resultset ('Artist')->search ({}, { order_by => { -asc => 'stuff', -desc => 'staff' } } )->as_query;
 }, qr/$file/, 'Exception correctly croak()ed');