Fix to columns_info_for for type(size)
[dbsrgits/DBIx-Class.git] / t / run / 04db.tl
index 452c0b9..57aa819 100644 (file)
@@ -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' => 100,
     }
 };
 is_deeply($type_info, $test_type_info, 'columns_info_for - column data types');