Skip to content

Commit

Permalink
Use real true and false when testing GC
Browse files Browse the repository at this point in the history
  • Loading branch information
joeri authored and treed committed Aug 17, 2009
1 parent 7ae0541 commit 6061f7e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions t/gc.t
Expand Up @@ -5,13 +5,13 @@ plan 4

# TODO rework this test after we can loop thru all the object in the system, then we can verify they were destroyed
status = GC.disable
is status, 'false', '.disable on GC'
is status, false, '.disable on GC'

status = GC.enable
is status, 'true', '.enable on GC'
is status, true, '.enable on GC'

status = GC.disable
is status, 'false', '.disable on GC'
is status, false, '.disable on GC'

GC.start
pass '.start on GC'

0 comments on commit 6061f7e

Please sign in to comment.