From: Andrew Rodland Date: Wed, 19 May 2010 23:28:26 +0000 (-0500) Subject: Fix dumpmore tests so they pass with a correctly-working SQLite X-Git-Tag: 0.07000~5 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=dbsrgits%2FDBIx-Class-Schema-Loader.git;a=commitdiff_plain;h=9334ac2606ee91e9d3b6bd251e1aa3dfd60618a3 Fix dumpmore tests so they pass with a correctly-working SQLite --- diff --git a/t/23dumpmore.t b/t/23dumpmore.t index c2074f8..2e2294e 100644 --- a/t/23dumpmore.t +++ b/t/23dumpmore.t @@ -260,7 +260,7 @@ do_dump_test( qr/package DBICTest::DumpMore::1::Foo;/, qr/=head1 NAME\n\nDBICTest::DumpMore::1::Foo\n\n=cut\n\n/, qr/=head1 ACCESSORS\n\n/, -qr/=head2 fooid\n\n data_type: 'integer'\n is_nullable: 1\n\n/, +qr/=head2 fooid\n\n data_type: 'integer'\n is_auto_increment: 1\n is_nullable: 1\n\n/, qr/=head2 footext\n\n data_type: 'text'\n default_value: 'footext'\n extra: {is_footext => 1}\n is_nullable: 1\n\n/, qr/->set_primary_key/, qr/=head1 RELATIONS\n\n/, @@ -271,7 +271,7 @@ qr/1;\n$/, qr/package DBICTest::DumpMore::1::Bar;/, qr/=head1 NAME\n\nDBICTest::DumpMore::1::Bar\n\n=cut\n\n/, qr/=head1 ACCESSORS\n\n/, -qr/=head2 barid\n\n data_type: 'integer'\n is_nullable: 1\n\n/, +qr/=head2 barid\n\n data_type: 'integer'\n is_auto_increment: 1\n is_nullable: 1\n\n/, qr/=head2 fooref\n\n data_type: 'integer'\n is_foreign_key: 1\n is_nullable: 1\n\n/, qr/->set_primary_key/, qr/=head1 RELATIONS\n\n/,