- Timestamp:
- 11/04/08 14:28:22 (2 months ago)
- Files:
-
- 1 modified
-
t/spec/S12-enums/basic.t (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
t/spec/S12-enums/basic.t
r22515 r22867 1 1 use v6; 2 2 use Test; 3 plan 6;3 plan 9; 4 4 5 5 # Very basic enum tests … … 11 11 is Day::Sun, 0, 'First item of an enum is 0'; 12 12 is Day::Sat, 6, 'Last item has the right value'; 13 is Sun, 0, 'Values exported into namespace too.'; 14 is Sat, 6, 'Values exported into namespace too.'; 13 15 } 14 16 … … 22 24 } 23 25 26 enum JustOne <Thing>; 27 { 28 is JustOne::Thing, 0, 'Enum of one element works.'; 29 }
