| 10 | | sub exp_ALL is export( :ALL ) { 'exp_ALL' } |
| 11 | | sub exp_DEFAULT is export( :DEFAULT ) { 'exp_DEFAULT' } |
| 12 | | sub exp_ALL_DEFAULT is export( :ALL, :DEFAULT ) { 'exp_ALL_DEFAULT' } |
| 13 | | sub exp_my_tag is export( :my_tag ) { 'exp_my_tag' } |
| | 10 | sub exp_ALL is export( :ALL ) { 'exp_ALL' } |
| | 11 | sub exp_DEFAULT is export( :DEFAULT ) { 'exp_DEFAULT' } |
| | 12 | sub exp_ALL_DEFAULT is export( :ALL, :DEFAULT ) { 'exp_ALL_DEFAULT' } |
| | 13 | sub exp_MANDATORY is export( :MANDATORY ) { 'exp_MANDATORY' } |
| | 14 | sub exp_my_tag is export( :my_tag ) { 'exp_my_tag' } |
| | 67 | ## exp_MANDATORY |
| | 68 | ok( &exp_MANDATORY === &EXPORT::ALL::exp_MANDATORY, |
| | 69 | 'exp_MANDATORY -- values agree' ); |
| | 70 | ok( &exp_MANDATORY =:= &EXPORT::ALL::exp_MANDATORY, |
| | 71 | 'exp_MANDATORY -- containers agree' ); |
| | 72 | |
| | 73 | ok( &exp_MANDATORY === &EXPORT::MANDATORY::exp_MANDATORY, |
| | 74 | 'exp_MANDATORY -- values agree' ); |
| | 75 | ok( &exp_MANDATORY =:= &EXPORT::MANDATORY::exp_MANDATORY, |
| | 76 | 'exp_MANDATORY -- containers agree' ); |
| | 77 | |
| | 78 | ok( ! &EXPORT::DEFAULT::exp_MANDATORY, |
| | 79 | 'exp_MANDATORY -- EXPORT::DEFAULT::exp_MANDATORY does not exist' ); |
| | 80 | |
| | 81 | |