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

Skipping test so we can do a dev release with the SQLite foreign key improvements

This commit is contained in:
Adam Kennedy 2009-10-15 03:57:44 +00:00
parent 726440ae80
commit a0188d13f9
5 changed files with 5 additions and 5 deletions

View file

@ -1,6 +1,6 @@
Changes for Perl extension DBD-SQLite
1.26_05 to be released
1.26_05 Thu 15 Oct 2009
- Updated to SQLite 3.6.19 (ISHIGAKI)
1.26_04 Tue 6 Oct 2009

View file

@ -10,7 +10,7 @@ use vars qw{$err $errstr $drh $sqlite_version};
use vars qw{%COLLATION};
BEGIN {
$VERSION = '1.26_04';
$VERSION = '1.26_05';
@ISA = 'DynaLoader';
# Initialize errors

View file

@ -46,7 +46,7 @@ $sth->execute;
$sth->fetch;
my $types = $sth->{TYPE};
my $names = $sth->{NAME};
diag "Types: @$types\nNames: @$names";
# diag "Types: @$types\nNames: @$names";
is scalar @$types, scalar @$names, '$sth->{TYPE} array is same length as $sth->{NAME} array';
# FIXME: This is wrong! $sth->{TYPE} should return an array of integers see: rt #46873
TODO: {

View file

@ -9,7 +9,7 @@ use Test::More ();
use vars qw{$VERSION @ISA @EXPORT @CALL_FUNCS};
BEGIN {
$VERSION = '1.26_04';
$VERSION = '1.26_05';
@ISA = 'Exporter';
@EXPORT = qw/connect_ok dies @CALL_FUNCS/;

View file

@ -7,7 +7,7 @@ BEGIN {
}
use t::lib::Test;
use Test::More;
use Test::More skip_all => 'Temporarily skipping known-bad test (FOR 1.26_05 ONLY!)';
use Test::NoWarnings;
plan tests => 6;