Merge 'trunk' into 'DBIx-Class-current'
[dbsrgits/DBIx-Class.git] / t / run / 04db.tl
index 452c0b9..4865d96 100644 (file)
@@ -29,13 +29,22 @@ $schema->storage->txn_rollback;
 is($artist, undef, "Rollback ok");
 
 my $type_info = $schema->storage->columns_info_for('artist');
+
+# I know this is gross but SQLite reports the size differently from release
+# to release. At least this way the test still passes.
+
+delete $type_info->{artistid}{size};
+delete $type_info->{name}{size};
+
 my $test_type_info = {
     'artistid' => {
-        'data_type' => 'INTEGER'
+        'data_type' => 'INTEGER',
+        'is_nullable' => 0,
     },
     'name' => {
-        'data_type' => 'VARCHAR'
-    }
+        'data_type' => 'varchar',
+        'is_nullable' => 0,
+    },
 };
 is_deeply($type_info, $test_type_info, 'columns_info_for - column data types');