summaryrefslogtreecommitdiffstats
path: root/t/33-moosex-globref.t
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2010-06-15 03:42:31 -0500
committerJesse Luehrs <doy@tozt.net>2010-06-15 03:42:31 -0500
commit5a5b351f6789989cf4f6033128a8cc2f711c795f (patch)
treede5b29a98946fb9ac9be5a1bd2fb280194687c26 /t/33-moosex-globref.t
parentdfc2ff5f2709f198d9fdb21d84a2534acc9f3670 (diff)
downloadmoosex-nonmoose-5a5b351f6789989cf4f6033128a8cc2f711c795f.tar.gz
moosex-nonmoose-5a5b351f6789989cf4f6033128a8cc2f711c795f.zip
switch to done_testing in tests
Diffstat (limited to 't/33-moosex-globref.t')
-rw-r--r--t/33-moosex-globref.t3
1 files changed, 2 insertions, 1 deletions
diff --git a/t/33-moosex-globref.t b/t/33-moosex-globref.t
index 3f59e39..01f94bf 100644
--- a/t/33-moosex-globref.t
+++ b/t/33-moosex-globref.t
@@ -6,7 +6,6 @@ use Test::Moose;
BEGIN {
eval "use MooseX::GlobRef ()";
plan skip_all => "MooseX::GlobRef is required for this test" if $@;
- plan tests => 10;
}
# XXX: the way the IO modules are loaded means we can't just rely on cmop to
# load these properly/:
@@ -83,3 +82,5 @@ with_immutable {
is($buf, "foo\nbar\n", "filehandle still works as normal");
}
} 'IO::File::Moose';
+
+done_testing;