Changeset 22489 for t

Show
Ignore:
Timestamp:
10/02/08 22:41:05 (2 months ago)
Author:
particle
Message:

[t] improve sub names in export tests

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • t/spec/S11-modules/export.t

    r22487 r22489  
    66# L<S11/"Exportation"/> 
    77 
    8 sub foo is export(:DEFAULT) { 'foo' } 
     8sub exp_no_parens is export           { 'exp_no_parens' } 
    99 
    1010 
    11 ok( &foo === &EXPORT::ALL::foo, '&Foo::foo bound to ::EXPORT::ALL inner module' ); 
     11ok( &exp_no_parens === &EXPORT::ALL::exp_no_parens, 
     12    'sub bound to ::EXPORT::ALL inner module' ); 
    1213