Revert 2c2bc4e5 - it is entirely superseded by cb551b07, 2baba3d9 and 83eef562
[dbsrgits/DBIx-Class.git] / t / 73oracle.t
index f6da1a1..df38da8 100644 (file)
@@ -62,7 +62,6 @@ $ENV{NLS_LANG} = "AMERICAN";
   1;
 }
 
-require DBICTest::Schema;
 DBICTest::Schema->load_classes('ArtistFQN');
 
 # This is in Core now, but it's here just to test that it doesn't break
@@ -201,13 +200,6 @@ sub _run_tests {
     like ($seq, qr/\.${q}artist_pk_seq${q}$/, 'Correct PK sequence selected for sqlt-like trigger');
   }
 
-  lives_ok {
-    $new = $schema->resultset('Artist')->create({});
-    $new->discard_changes;
-    ok $new->artistid, 'Created row has id'
-  } 'Create with empty hashref works';
-
-
 # test LIMIT support
   for (1..6) {
     $schema->resultset('Artist')->create({ name => 'Artist ' . $_ });