summaryrefslogtreecommitdiffstats
path: root/t/04-merge.t
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2013-07-08 17:20:23 -0400
committerJesse Luehrs <doy@tozt.net>2013-07-08 17:25:39 -0400
commit04a6fd13f7ea3a45881d6e75ea1dffba38a999fd (patch)
treeb275e3345e05514fea8264c82a82b8ce0973170f /t/04-merge.t
parent3e4a621b8dbe1a03d3bfc8c8cac349112d987b7c (diff)
downloaddist-checkconflicts-04a6fd13f7ea3a45881d6e75ea1dffba38a999fd.tar.gz
dist-checkconflicts-04a6fd13f7ea3a45881d6e75ea1dffba38a999fd.zip
remove test numbers
Diffstat (limited to 't/04-merge.t')
-rw-r--r--t/04-merge.t21
1 files changed, 0 insertions, 21 deletions
diff --git a/t/04-merge.t b/t/04-merge.t
deleted file mode 100644
index 9c0f3b6..0000000
--- a/t/04-merge.t
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/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;