File: 00basic.t

package info (click to toggle)
libxml-sax-perl 0.99%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch, wheezy
  • size: 556 kB
  • ctags: 218
  • sloc: perl: 2,374; sh: 127; xml: 121; makefile: 5
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);