- Timestamp:
- 10/24/08 17:23:55 (3 months ago)
- Files:
-
- 1 modified
-
t/spec/S12-methods/instance.t (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
t/spec/S12-methods/instance.t
r22702 r22737 34 34 { 35 35 my $val; 36 lives_ok { $val = $foo.noargs (); }, "... <space> + parentheses after method";36 lives_ok { $val = $foo.noargs\ (); }, "... <unspace> + parentheses after method"; 37 37 is($val, 42, '... we got the value correctly'); 38 38 } … … 50 50 my $val; 51 51 lives_ok { 52 $val = $foo.noargs .();53 }, "... < space> + '.' + parentheses after method", :todo<bug>;52 $val = $foo.noargs\ .(); 53 }, "... <unspace> + '.' + parentheses after method", :todo<bug>; 54 54 is($val, 42, '... we got the value correctly', :todo<feature>); 55 55 }
