File: 00basic.t

package info (click to toggle)
libxml-sax-perl 1.02%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 608 kB
  • sloc: perl: 2,374; xml: 121; sh: 79; makefile: 2
file content (11 lines) | stat: -rw-r--r-- 178 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
use Test;
BEGIN { plan tests => 2 }
END { ok($loaded == 2) }
use XML::SAX;
$loaded++;

use XML::SAX::PurePerl;
$loaded++;

ok(XML::SAX->VERSION eq XML::SAX::PurePerl->VERSION);