You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
241 B
Perl
20 lines
241 B
Perl
13 years ago
|
BEGIN { push @INC, "./t" ; print "1..1\n" }
|
||
|
|
||
|
package main;
|
||
|
|
||
13 years ago
|
use TQt;
|
||
13 years ago
|
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";
|