Changeset 382
- Timestamp:
- 03/09/07 14:35:49 (5 years ago)
- Location:
- wiki-toolkit-plugin-categoriser/trunk
- Files:
-
- 3 modified
-
Changes (modified) (1 diff)
-
lib/Wiki/Toolkit/Plugin/Categoriser.pm (modified) (1 diff)
-
t/nested_categories.t (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wiki-toolkit-plugin-categoriser/trunk/Changes
r381 r382 1 0.06 2 Explicitly skip tests if no backends configured, to avoid spurious 3 test failure reports. 4 1 5 0.05 8 March 2007 2 6 Fix bug - ->categories was picking up out-of-date categories. -
wiki-toolkit-plugin-categoriser/trunk/lib/Wiki/Toolkit/Plugin/Categoriser.pm
r380 r382 4 4 5 5 use vars qw( $VERSION @ISA ); 6 $VERSION = '0.0 5';6 $VERSION = '0.06'; 7 7 @ISA = qw( Wiki::Toolkit::Plugin ); 8 8 -
wiki-toolkit-plugin-categoriser/trunk/t/nested_categories.t
r261 r382 5 5 6 6 my $iterator = Wiki::Toolkit::TestLib->new_wiki_maker; 7 plan tests => ( $iterator->number * 1 ); 7 if ( $iterator->number ) { 8 plan tests => ( $iterator->number * 1 ); 9 } else { 10 plan skip_all => "No backends configured."; 11 } 8 12 9 13 while ( my $wiki = $iterator->new_wiki ) {
