File: 00_syntax.t

package info (click to toggle)
libxml-dumper-perl 0.81-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 240 kB
  • sloc: perl: 535; xml: 12; makefile: 8
file content (15 lines) | stat: -rw-r--r-- 182 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use strict;
use warnings;

use Test;
use XML::Dumper;

BEGIN { plan tests => 2 }

# ===== IT LOADS AND PARSES
ok( 1 );

# ===== IT INSTANTIATES
my $dump = new XML::Dumper;
ok( 2 );