Skip to content

Commit

Permalink
Use Test::More's done_testing
Browse files Browse the repository at this point in the history
  • Loading branch information
ashb committed Aug 26, 2009
1 parent 2890011 commit cbb673d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Makefile.PL
@@ -1,6 +1,6 @@
use strict;
use warnings;
use inc::Module::Install;
use inc::Module::Install 0.91;

name 'Test-WWW-Selenium-Catalyst';
perl_version '5.008000';
Expand All @@ -15,5 +15,6 @@ requires(
);

test_requires 'IPC::Cmd' => '0.42';
test_requires 'Test::More' => '0.92';

WriteAll();
4 changes: 3 additions & 1 deletion t/01-live.t
Expand Up @@ -2,7 +2,7 @@
# 01-live.t
# Copyright (c) 2006 Jonathan Rockway <jrockway@cpan.org>

use Test::More tests => 80;
use Test::More;
use FindBin;
use lib "$FindBin::Bin/lib";

Expand Down Expand Up @@ -52,3 +52,5 @@ SKIP: {
}
}
}

done_testing;

0 comments on commit cbb673d

Please sign in to comment.