Changeset 22000

Show
Ignore:
Timestamp:
08/21/08 20:46:54 (3 months ago)
Author:
moritz
Message:

[t] more try{...} fixes

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • t/oo/attributes/instance.t

    r21719 r22000  
    7373    my $foo = Foo4.new(); 
    7474    ok($foo ~~ Foo4, '... our Foo4 instance was created'); 
    75     ok(try{!$foo.can("bar")}, '.. checking autogenerated accessor existence', :todo<feature>); 
     75    #?pugs eval 'todo' 
     76    ok(!$foo.can("bar"), '.. checking autogenerated accessor existence', ); 
    7677} 
    7778 
     
    8081{ 
    8182    my $foo = eval 'Foo4a.new()'; 
    82     ok(try{$foo ~~ Foo4a}, '... our Foo4a instance was created'); 
    83     ok(try{!$foo.can("bar")}, '.. checking autogenerated accessor existence', :todo<feature>); 
     83    ok(eval('$foo ~~ Foo4a'), '... our Foo4a instance was created'); 
     84    #?pugs eval 'todo' 
     85    ok(!$foo.can("bar"), '.. checking autogenerated accessor existence'); 
    8486} 
    8587