Changeset 347
- Timestamp:
- 01/08/07 01:10:12 (2 years ago)
- Files:
-
- library/perl/trunk/Assurer/examples/config.yaml (modified) (1 diff)
- library/perl/trunk/Assurer/lib/Assurer/Test.pm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
library/perl/trunk/Assurer/examples/config.yaml
r346 r347 1 1 global: 2 2 config: 3 no_diag: 03 no_diag: 1 4 4 5 5 test: library/perl/trunk/Assurer/lib/Assurer/Test.pm
r346 r347 7 7 use Term::ANSIColor; 8 8 9 require Exporter; 10 11 use vars qw( @ISA @EXPORT $AUTOLOAD ); 12 13 @ISA = qw( Exporter ); 14 @EXPORT = qw( ok use_ok require_ok 15 is isnt like unlike is_deeply 16 cmp_ok 17 skip todo todo_skip 18 pass fail 19 eq_array eq_hash eq_set 20 $TODO 21 plan 22 can_ok isa_ok 23 diag 24 BAIL_OUT 25 ); 9 our $AUTOLOAD; 26 10 27 11 my $test = Test::Builder->new;
