Author: REHSACK
Date: Thu Jun 17 01:27:04 2010
New Revision: 14165
Modified:
dbi/trunk/t/49dbd_file.t
Log:
"/" is not a path separator for every OS
Modified: dbi/trunk/t/49dbd_file.t
==============================================================================
--- dbi/trunk/t/49dbd_file.t (original)
+++ dbi/trunk/t/49dbd_file.t Thu Jun 17 01:27:04 2010
@@ -70,7 +70,10 @@
local $SIG{__DIE__} = sub { push @msg, @_ };
$sth->execute;
};
- like ("@msg", qr{Cannot open .*/t_sbdgf_}, "Cannot open non-existing
file");
+ like ("@msg", qr{Cannot open .*t_sbdgf_}, "Cannot open non-existing file");
+ eval {
+ note $dbh->f_get_meta ("t_sbdgf_53442Gz", "f_fqfn");
+ };
}
SKIP: {