Changeset 22487 for t

Show
Ignore:
Timestamp:
10/02/08 21:53:25 (2 months ago)
Author:
particle
Message:

[t] remove use of external module

Files:
1 modified

Legend:

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

    r22481 r22487  
    66# L<S11/"Exportation"/> 
    77 
    8 use t::spec::S11-modules::Foo; 
     8sub foo is export(:DEFAULT) { 'foo' } 
    99 
    10 ok( &Foo::foo =:= &Foo::EXPORT::ALL::foo, '&Foo::foo bound to ::EXPORT::ALL inner module' ); 
    1110 
     11ok( &foo === &EXPORT::ALL::foo, '&Foo::foo bound to ::EXPORT::ALL inner module' ); 
     12