diff options
author | Lorry Tar Creator <lorry-tar-importer@lorry> | 2014-04-03 14:57:29 +0000 |
---|---|---|
committer | Lorry Tar Creator <lorry-tar-importer@lorry> | 2014-04-03 14:57:29 +0000 |
commit | dfaae12e4d85f7c6821ae4a9fbf7e463d570e7ba (patch) | |
tree | 6dcde6413d8dcd3d24b0251080c21c49fa5b81a6 /t/lib/runtime/Foo/Conflicts.pm | |
download | Dist-CheckConflicts-tarball-dfaae12e4d85f7c6821ae4a9fbf7e463d570e7ba.tar.gz |
Dist-CheckConflicts-0.11HEADDist-CheckConflicts-0.11master
Diffstat (limited to 't/lib/runtime/Foo/Conflicts.pm')
-rw-r--r-- | t/lib/runtime/Foo/Conflicts.pm | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/t/lib/runtime/Foo/Conflicts.pm b/t/lib/runtime/Foo/Conflicts.pm new file mode 100644 index 0000000..34ea4b0 --- /dev/null +++ b/t/lib/runtime/Foo/Conflicts.pm @@ -0,0 +1,14 @@ +package Foo::Conflicts; +use strict; +use warnings; + +use Dist::CheckConflicts + ':runtime', + -conflicts => { + 'Foo::Foo' => 0.01, + 'Foo::Bar' => 0.01, + 'Foo::Baz' => 0.01, + 'Foo::Quux' => 0.01, + }; + +1; |