summaryrefslogtreecommitdiffstats
path: root/t/also.t
diff options
context:
space:
mode:
Diffstat (limited to 't/also.t')
-rw-r--r--t/also.t32
1 files changed, 32 insertions, 0 deletions
diff --git a/t/also.t b/t/also.t
new file mode 100644
index 0000000..285a5aa
--- /dev/null
+++ b/t/also.t
@@ -0,0 +1,32 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use Test::More;
+use Test::Fatal;
+use lib 't/lib/also';
+
+{
+ use_ok('Bar::Conflicts');
+ is_deeply(
+ { Bar::Conflicts->conflicts },
+ {
+ 'Bar::Local' => '0.02',
+ 'Foo::Thing' => '0.01',
+ 'Foo::Thing::Sub' => '0.05',
+ },
+ "can detect the proper conflicts module"
+ );
+}
+
+{
+ use_ok('Bar::Conflicts2');
+ is_deeply(
+ { Bar::Conflicts2->conflicts },
+ {
+ 'Bar::Also' => '0.06',
+ },
+ "unknown also entries are ignored"
+ );
+}
+
+done_testing;