summaryrefslogtreecommitdiffstats
path: root/t/04-merge.t
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2010-11-21 22:59:21 -0600
committerJesse Luehrs <doy@tozt.net>2010-11-21 22:59:21 -0600
commit24b5fa4102f9959b4be48abd3c7c007e30f0bd8a (patch)
tree759be52557bdaf7bb08dab11b14cf287cbd649b2 /t/04-merge.t
parent9e1c45cd07ca60274032080ebbbf2d6bdf114a41 (diff)
downloaddist-checkconflicts-24b5fa4102f9959b4be48abd3c7c007e30f0bd8a.tar.gz
dist-checkconflicts-24b5fa4102f9959b4be48abd3c7c007e30f0bd8a.zip
more tests
Diffstat (limited to 't/04-merge.t')
-rw-r--r--t/04-merge.t21
1 files changed, 21 insertions, 0 deletions
diff --git a/t/04-merge.t b/t/04-merge.t
new file mode 100644
index 0000000..9c0f3b6
--- /dev/null
+++ b/t/04-merge.t
@@ -0,0 +1,21 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use Test::More;
+use lib 't/lib/04';
+
+{
+ use_ok('Foo::Conflicts');
+ is_deeply(
+ { Foo::Conflicts->conflicts },
+ {
+ 'Foo::One' => '0.03',
+ 'Foo::Two' => '0.03',
+ 'Foo::Three' => '0.02',
+ 'Foo::Four' => '0.02',
+ },
+ "got the right conflicts"
+ );
+}
+
+done_testing;