1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-07 14:19:10 -04:00

changed diag to note

This commit is contained in:
Kenichi Ishigaki 2014-07-21 08:31:07 +09:00
parent 58b49b8bdb
commit defae5918a

View file

@ -30,7 +30,7 @@ CREATE TABLE foo (
END_SQL
foreach ( "A", "\xe9", "\x{20ac}" ) {
diag sprintf "testing \\x{%x}", ord($_);
note sprintf "testing \\x{%x}", ord($_);
ok( $dbh->do("INSERT INTO foo VALUES ( ? )", {}, $_), 'INSERT with bind' );
ok( $dbh->do("INSERT INTO foo VALUES ( '$_' )"), 'INSERT without bind' );
my $vals = $dbh->selectcol_arrayref("SELECT bar FROM foo");