Delete t/run/ and t/helperrels/ so that the reorganize_tests branch can merge in...
[dbsrgits/DBIx-Class.git] / t / run / 05multipk.tl
diff --git a/t/run/05multipk.tl b/t/run/05multipk.tl
deleted file mode 100644 (file)
index 5cea1fd..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-use strict;
-use warnings;  
-
-use Test::More;
-use lib qw(t/lib);
-use DBICTest;
-
-my $schema = DBICTest::init_schema();
-
-plan tests => 4;
-
-my $artist = DBICTest::Artist->find(1);
-ok($artist->find_related('twokeys', {cd => 1}), "find multiple pks using relationships + args");
-ok($schema->resultset("FourKeys")->find(1,2,3,4), "find multiple pks without hash");
-ok($schema->resultset("FourKeys")->find(5,4,3,6), "find multiple pks without hash");
-is($schema->resultset("FourKeys")->find(1,2,3,4)->ID, 'DBICTest::FourKeys|fourkeys|bar=2|foo=1|goodbye=4|hello=3', 'unique object id ok for multiple pks');
-