File: module.t

package info (click to toggle)
libexporter-autoclean-perl 0.01-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 276 kB
  • sloc: perl: 3,921; makefile: 2
file content (10 lines) | stat: -rw-r--r-- 202 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
use Test::Base;
use FindBin;
use lib "$FindBin::Bin/lib";

plan tests => 2;

use Foo;

is( $Foo::data, 'export function', 'export ok' );
is( Foo->method, 'object method', 'clean exported function ok');