- Timestamp:
- 10/02/08 22:41:05 (2 months ago)
- Files:
-
- 1 modified
-
t/spec/S11-modules/export.t (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
t/spec/S11-modules/export.t
r22487 r22489 6 6 # L<S11/"Exportation"/> 7 7 8 sub foo is export(:DEFAULT) { 'foo' }8 sub exp_no_parens is export { 'exp_no_parens' } 9 9 10 10 11 ok( &foo === &EXPORT::ALL::foo, '&Foo::foo bound to ::EXPORT::ALL inner module' ); 11 ok( &exp_no_parens === &EXPORT::ALL::exp_no_parens, 12 'sub bound to ::EXPORT::ALL inner module' ); 12 13
