Changeset 347

Show
Ignore:
Timestamp:
01/08/07 01:10:12 (2 years ago)
Author:
miya
Message:

Assurer: Modify Assurer::Test because of not need to export function.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • library/perl/trunk/Assurer/examples/config.yaml

    r346 r347  
    11global: 
    22  config: 
    3     no_diag: 0 
     3    no_diag: 1 
    44 
    55test: 
  • library/perl/trunk/Assurer/lib/Assurer/Test.pm

    r346 r347  
    77use Term::ANSIColor; 
    88 
    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         ); 
     9our $AUTOLOAD; 
    2610 
    2711my $test = Test::Builder->new;