File: 003_DESTROY.t

package info (click to toggle)
libmethod-autoload-perl 0.02-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 128 kB
  • sloc: perl: 120; makefile: 2
file content (12 lines) | stat: -rw-r--r-- 303 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
# -*- perl -*-

# t/001_load.t - check module loading and create testing directory

use Test::More tests => 4;

BEGIN { use_ok( 'Method::Autoload' ); }

my $object = Method::Autoload->new ();
isa_ok ($object, 'Method::Autoload');
is($object->DESTROY, "0E0", 'DESTORY');
ok($object->DESTROY, 'DESTORY');