You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
libtqt-perl/PerlTQt/t/f_import.t

20 lines
241 B

BEGIN { push @INC, "./t" ; print "1..1\n" }
package main;
use TQt;
use My::SubCodec;
use Foo::SubCodec;
$tc1 = My::SubCodec();
$tc2 = Foo::SubCodec();
$tc1->bar();
$tc2->foo();
$tc2->deleteAllCodecs;
# all imports OK
print "ok 1\n";