Author: coke
Date: Fri Oct 21 08:55:30 2005
New Revision: 9530
Modified:
trunk/t/library/json.t
Log:
Whoops. These tests are passing AND not being skipped. Get rid of
the bad SKIP code.
Modified: trunk/t/library/json.t
==============================================================================
--- trunk/t/library/json.t (original)
+++ trunk/t/library/json.t Fri Oct 21 08:55:30 2005
@@ -19,12 +19,6 @@ Tests JSON->Parrot and Parrot->JSON conv
use strict;
use Parrot::Test tests => 2;
-use Test::More;
-
-use vars qw($SKIP);
-
-SKIP: {
- local $SKIP = "Not implemented yet.";
# no. 1
pir_output_is(<<'CODE', <<'OUT', 'Create JSON of an empty string');
@@ -74,4 +68,3 @@ CODE
9
]
OUT
-}