summaryrefslogtreecommitdiff
path: root/t/merge.t
diff options
context:
space:
mode:
Diffstat (limited to 't/merge.t')
-rw-r--r--t/merge.t21
1 files changed, 21 insertions, 0 deletions
diff --git a/t/merge.t b/t/merge.t
new file mode 100644
index 0000000..074efaf
--- /dev/null
+++ b/t/merge.t
@@ -0,0 +1,21 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use Test::More;
+use lib 't/lib/merge';
+
+{
+ require 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;