- Timestamp:
- 09/29/08 23:07:21 (2 months ago)
- Location:
- t
- Files:
-
- 1 added
- 1 removed
- 1 modified
- 1 moved
-
spec/S06-traits/misc.t (modified) (3 diffs)
-
spec/integration (added)
-
spec/integration/lexical-array-in-inner-block.t (moved) (moved from t/xx-uncategorized/lexical-array-in-inner-block.t)
-
xx-uncategorized/optional_copy.t (deleted)
Legend:
- Unmodified
- Added
- Removed
-
t/spec/S06-traits/misc.t
r22127 r22461 3 3 use Test; 4 4 5 plan 1 2;5 plan 13; 6 6 7 7 =begin description … … 45 45 is($foo, 1, 'pass by value works'); 46 46 47 # same test with default value 48 sub boom ($arg is copy = 0) { $arg++ } 49 50 lives_ok { boom(42) }, "can modify a copy"; 51 52 47 53 # is ref 48 54 #?rakudo skip 'is ref' … … 61 67 ok(eval('sub my_format (*@data is context(Item)) { }; 1'), "is context - compile check"); 62 68 69 70 63 71 # To do - check that is context actually works 64 72 # vim: ft=perl6
