--- trunk/t/02-frey-introspect.t 2008/07/03 19:51:18 51 +++ trunk/t/02-frey-introspect.t 2008/07/05 15:19:55 53 @@ -29,14 +29,11 @@ ok( defined $o->debug, 'debug' ); ok( ! $o->path, 'no path' ); - ok( my $examine = $o->examine, 'examine' ); - diag dump( $examine ) if $debug; + ok( my $js = $o->joose, 'joose' ); + diag dump( $js ) if $debug; ok( $o->path, 'path' ); - my $cmd = 'js ' . $o->path; - my $syntax = `$cmd 2>&1`; - diag $syntax; - - ok( ! $syntax, 'syntax' ); + ok( my @methods = $o->methods, 'methods' ); + diag dump( @methods ) if $debug; }