File: basic.t

package info (click to toggle)
libtest-tap-htmlmatrix-perl 0.09-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 168 kB
  • ctags: 50
  • sloc: perl: 539; makefile: 40
file content (22 lines) | stat: -rw-r--r-- 297 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/perl

use strict;
use warnings;

use Test::More tests => 5;


my $m;
BEGIN { use_ok($m = "Test::TAP::HTMLMatrix") }

use Test::TAP::Model::Visual;
my $r = Test::TAP::Model::Visual->new;

isa_ok(my $v = $m->new($r), $m);

can_ok($v, "html");

can_ok($v, "petal");

can_ok($v, "extra");