File: 60module.t

package info (click to toggle)
libobject-realize-later-perl 0.22-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 172 kB
  • sloc: perl: 421; makefile: 2
file content (18 lines) | stat: -rw-r--r-- 281 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env perl
# -*- perl -*-
# By Slavan Rezic <slaven@rezic.de>   2003-07-29

use strict;
use warnings;

use Test;

use lib "t/testmods";
use I;

BEGIN { plan tests => 3 }

my $i_obj = I->new;
ok(ref $i_obj, "I");
ok($i_obj->a_method, 42);
ok(ref $i_obj, "Another::Class");