Changeset 300

Show
Ignore:
Timestamp:
02/26/05 05:13:28 (4 years ago)
Author:
autrijus
svk:copy_cache_prev:
1041
Message:

* Let 03operator.t not die this horribly before I restore chained ops

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • t/03operator.t

    r269 r300  
    4141 
    4242ok(5 > 4 > 3, "chained comparison"); 
    43 ok(3 < 4 < 5, "chained comparison"); 
    44 ok(!(3 > 4 < 5), "chained comparison"); 
     43ok(eval '3 < 4 < 5', "chained comparison"); 
    4544ok(5 == 5 > -5, "chained comparison with equality"); 
    46 ok(5 <= 5 > -5, "chained comparison with <="); 
    47 ok(-5 < 5 >= 5, "chained comparison with >="); 
     45ok(eval '!(3 > 4 < 5)', "chained comparison"); 
     46ok('5 <= 5 > -5', "chained comparison with <="); 
     47ok('-5 < 5 >= 5', "chained comparison with >="); 
    4848 
    4949ok("5" gt "4" gt "3", "chained str comparison");