[Bast-commits] r6843 - DBIx-Class/0.08/trunk/t/multi_create
abraxxa at dev.catalyst.perl.org
abraxxa at dev.catalyst.perl.org
Mon Jun 29 09:02:18 GMT 2009
Author: abraxxa
Date: 2009-06-29 09:02:17 +0000 (Mon, 29 Jun 2009)
New Revision: 6843
Modified:
DBIx-Class/0.08/trunk/t/multi_create/m2m.t
Log:
fixed typo in test
Modified: DBIx-Class/0.08/trunk/t/multi_create/m2m.t
===================================================================
--- DBIx-Class/0.08/trunk/t/multi_create/m2m.t 2009-06-29 08:14:45 UTC (rev 6842)
+++ DBIx-Class/0.08/trunk/t/multi_create/m2m.t 2009-06-29 09:02:17 UTC (rev 6843)
@@ -23,7 +23,7 @@
my $cd2 = $schema->resultset('CD')->search ( { cdid => { '!=', $cd->cdid } }, {rows => 1} )->single; # retrieve a cd different from the first
$cd2->add_to_producers ({name => 'new m2m producer'}); # attach to an existing producer
- ok ($cd2->producers->find ({name => 'new m2m producer'}), 'Exsiting producer attached to existing cd');
+ ok ($cd2->producers->find ({name => 'new m2m producer'}), 'Existing producer attached to existing cd');
}, 'Test far-end find_or_create over many_to_many');
More information about the Bast-commits
mailing list