Changeset 7190 for t/var/is_readonly.t
- Timestamp:
- 09/28/05 23:08:26 (3 years ago)
- Files:
-
- 1 modified
-
t/var/is_readonly.t (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
t/var/is_readonly.t
r6755 r7190 20 20 is $a, 42, "binding the variable now works"; 21 21 22 dies_ok { $a := 17 }, "but binding it again does not work" ;22 dies_ok { $a := 17 }, "but binding it again does not work", :todo<feature>; 23 23 } 24 24 … … 28 28 29 29 $a := 42; 30 ok (try{ exists $a }), "exists() returns true now" ;30 ok (try{ exists $a }), "exists() returns true now", :todo<feature>; 31 31 } 32 32 … … 34 34 my $a = 3; 35 35 36 ok (try{ exists $a }), "exists() on a plain normal initialized variable returns true" ;36 ok (try{ exists $a }), "exists() on a plain normal initialized variable returns true", :todo<feature>; 37 37 }
