From: rkinyon Date: Wed, 10 May 2006 19:46:05 +0000 (+0000) Subject: r11685@rob-kinyons-powerbook58: rob | 2006-04-29 10:50:27 -0400 X-Git-Tag: 0-99_03~44 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=56fef624741395b3db3fbd62d4fa2f2aaec590de;p=dbsrgits%2FDBM-Deep.git r11685@rob-kinyons-powerbook58: rob | 2006-04-29 10:50:27 -0400 Have tests for a couple bugs --- diff --git a/t/17_import.t b/t/17_import.t index eeb8688..e0bd089 100644 --- a/t/17_import.t +++ b/t/17_import.t @@ -35,7 +35,7 @@ $db->import( $struct ); cmp_deeply( $db, - noclass({ + { key1 => 'value1', key2 => 'value2', array1 => [ 'elem0', 'elem1', 'elem2', ], @@ -44,7 +44,7 @@ cmp_deeply( subkey2 => "subvalue2", subkey3 => useclass( bless {}, 'Foo' ), }, - }), + }, "Everything matches", );