File: 09whitespace.t

package info (click to toggle)
libpod-coverage-perl 0.23-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 240 kB
  • sloc: perl: 611; makefile: 7
file content (12 lines) | stat: -rw-r--r-- 273 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/perl -w
use strict;
use Test::More tests => 3;
use lib 't/lib';

BEGIN {
    use_ok( 'Pod::Coverage' );
}

my $obj = new Pod::Coverage package => 'Empty', nonwhitespace => 1;
isa_ok( $obj, 'Pod::Coverage' );
is($obj->coverage, 0.5, "Noticed empty pod section");