From: rkinyon Date: Wed, 10 May 2006 19:46:31 +0000 (+0000) Subject: r11687@rob-kinyons-powerbook58: rob | 2006-04-29 23:33:57 -0400 X-Git-Tag: 0-99_03~42 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=7faa3b17c597e8cb5a992324916ad8f88511e845;p=dbsrgits%2FDBM-Deep.git r11687@rob-kinyons-powerbook58: rob | 2006-04-29 23:33:57 -0400 Added the failing test for import() tying stuff when it shouldn't --- diff --git a/t/17_import.t b/t/17_import.t index e0bd089..eeb8688 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", );