1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-08 22:58:17 -04:00
DBD-SQLite-SQLcipher/t/rt_44891_strings_look_like_numbers.t
Kenichi Ishigaki d356b70c3f more tests
2010-06-17 02:22:11 +00:00

30 lines
675 B
Perl

#!/usr/bin/perl
use strict;
BEGIN {
$| = 1;
$^W = 1;
}
use t::lib::Test;
use Test::More;
use Test::NoWarnings;
my @values = qw/
0 1 1.0 1.0e+001 0000 01010101 10010101
0000002100000517
0000002200000517
0000001e00000517
00002.000
/;
plan tests => @values * 2 + 1;
# no type specification
for my $value (@values) {
my $dbh = connect_ok( RaiseError => 1, AutoCommit => 1 );
$dbh->do('create table foo (string)');
$dbh->do('insert into foo values(?)', undef, $value);
my ($got) = $dbh->selectrow_array('select string from foo where string = ?', undef, $value);
ok defined $got && $got eq $value, "got: $got value: $value";
}