File: 00-load.t

package info (click to toggle)
libxml-hash-lx-perl 0.0603-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 408 kB
  • sloc: perl: 2,603; makefile: 5
file content (13 lines) | stat: -rw-r--r-- 343 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env perl -w

use strict;
use Test::More;
use lib::abs '../lib';
BEGIN {
	my $w = 0;
	eval {require Test::NoWarnings;Test::NoWarnings->import; 1} and $w = 1;
	plan tests => 2+$w;
	use_ok( 'XML::Hash::LX' );
	use_ok( 'XML::Hash::LX', 'xml2hash', 'hash2xml' );
};
diag( "Testing XML::Hash::LX $XML::Hash::LX::VERSION, Perl $], $^X" );