Sign in
fuchsia
/
third_party
/
swig
/
8a73e25fe2a1bd1bbffb052d47891238287aea7d
/
.
/
Examples
/
test-suite
/
perl5
/
director_frob_runme.pl
blob: 0faf440c59ff500839ce792f64c6d47585be975b [
file
] [
log
] [
blame
]
use
strict
;
use
warnings
;
use
Test
::
More
tests
=>
4
;
BEGIN
{
use_ok
'director_frob'
}
require_ok
'director_frob'
;
my
$foo
=
director_frob
::
Bravo
->
new
();
isa_ok $foo
,
'director_frob::Bravo'
;
is
(
$foo
->
abs_method
(),
'Bravo::abs_method()'
);