Skip to content

Commit

Permalink
updated tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bricas committed Apr 23, 2007
1 parent 6d13ae4 commit e943896
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 5 deletions.
3 changes: 3 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
Revision history for Perl extension DBIx::Class::Indexed.

0.02 XXXX
- update tests

0.01 Tue Apr 03 2007
- original version;
2 changes: 1 addition & 1 deletion lib/DBIx/Class/Indexed.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use warnings;

use base qw( DBIx::Class );

our $VERSION = '0.01';
our $VERSION = '0.02';

__PACKAGE__->mk_classdata( _indexer => undef );
__PACKAGE__->mk_classdata( indexer_connection_info => {} );
Expand Down
9 changes: 7 additions & 2 deletions t/98-pod_coverage.t
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
use strict;
use warnings;
use Test::More;
eval "use Test::Pod::Coverage 1.00";
plan skip_all => "Test::Pod::Coverage 1.00 required for testing POD coverage" if $@;

eval "use Test::Pod::Coverage 1.04";
plan skip_all => 'Test::Pod::Coverage 1.04 required' if $@;
plan skip_all => 'set TEST_POD to enable this test' unless $ENV{TEST_POD};

all_pod_coverage_ok();
9 changes: 7 additions & 2 deletions t/99-pod.t
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
use strict;
use warnings;
use Test::More;
eval "use Test::Pod 1.00";
plan skip_all => "Test::Pod 1.00 required for testing POD" if $@;

eval "use Test::Pod 1.14";
plan skip_all => 'Test::Pod 1.14 required' if $@;
plan skip_all => 'set TEST_POD to enable this test' unless $ENV{TEST_POD};

all_pod_files_ok();

0 comments on commit e943896

Please sign in to comment.