Changeset 479
- Timestamp:
- 11/08/08 23:12:32 (3 years ago)
- Location:
- wiki-toolkit/trunk
- Files:
-
- 2 modified
-
Changes (modified) (1 diff)
-
t/400_upgrade.t (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wiki-toolkit/trunk/Changes
r478 r479 8 8 Don't write out a new version of a node if the checksum is the 9 9 same as the one already stored (#43) 10 t/400_upgrade.t: skip all tests correctly if no backends 11 configured (#44) 10 12 11 13 0.76 13 July 2008 -
wiki-toolkit/trunk/t/400_upgrade.t
r451 r479 52 52 53 53 my $num_tests = (scalar @schemas_to_test * scalar @configured_databases * 2) + $num_mysql_only_tests; 54 plan tests => $num_tests; 54 if ( $num_tests == 0 ) { 55 plan skip_all => "no backends configured"; 56 } else { 57 plan tests => $num_tests; 58 } 55 59 56 60 foreach my $database (@configured_databases) {
