X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Frun%2F04db.tl;h=424948cba2da4e6af7dcc89cbffc0c8b6c5865d6;hb=fc22fbac7c99f1ee8a52e529a6ce4ee35fd5d4a9;hp=5adf4395d78ab62028e30d557ea10c0dd06d0f1c;hpb=1346e22d4899edf837c77312259c3ebaaf71f602;p=dbsrgits%2FDBIx-Class.git diff --git a/t/run/04db.tl b/t/run/04db.tl index 5adf439..424948c 100644 --- a/t/run/04db.tl +++ b/t/run/04db.tl @@ -31,10 +31,14 @@ is($artist, undef, "Rollback ok"); my $type_info = $schema->storage->columns_info_for('artist'); my $test_type_info = { 'artistid' => { - 'data_type' => 'INTEGER' + 'data_type' => 'INTEGER', + 'is_nullable' => 0, + 'size' => undef, }, 'name' => { - 'data_type' => 'varchar' + 'data_type' => 'varchar', + 'is_nullable' => 0, + 'size' => undef, } }; is_deeply($type_info, $test_type_info, 'columns_info_for - column data types');