File: 01load.t

package info (click to toggle)
libhtml-formattext-withlinks-perl 0.15-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 192 kB
  • sloc: perl: 246; makefile: 2
file content (15 lines) | stat: -rw-r--r-- 298 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# $Id$

use Test::More tests => 5;

use_ok('HTML::FormatText::WithLinks');

my $f = HTML::FormatText::WithLinks->new();

ok($f, 'objected created');
isa_ok( $f, 'HTML::FormatText::WithLinks' );

my $f2 = $f->new();

ok( $f2, 'second object created' );
isa_ok( $f2, 'HTML::FormatText::WithLinks' );