2 # Copyright (C) 2006-2007, The Perl Foundation.
7 use lib qw( . lib ../lib ../../lib );
9 use Parrot::Test tests => 2;
13 t/op/load_bytecode.t - loading bytecode tests
17 % prove t/op/load_bytecode.t
21 Tests the C<load_bytecode> operation.
25 pir_error_output_like( <<'CODE', <<'OUTPUT', "load_bytecode on directory" );
33 pir_error_output_like( <<'CODE', <<'OUTPUT', "load_bytecode on non-existent file" );
35 load_bytecode 'no_file_by_this_name'
38 /"load_bytecode" couldn't find file 'no_file_by_this_name'/
43 # cperl-indent-level: 4
46 # vim: expandtab shiftwidth=4: