HTML-Element-Library

 view release on metacpan or  search on metacpan

t/lib.pm  view on Meta::CPAN

use HTML::Element::Library;
use Test::More ();
use Test::XML;

use parent qw/Exporter/;
our @EXPORT = qw/is is_deeply is_xml slurp mktree isxml/;
our $VERSION = '0.001'; # Exporter needs a $VERSION

sub import {
	my ($self, @args) = @_;
	strict->import;
	warnings->import;
	Test::More->import(@args);

	$self->export_to_level(1, $self);
}

sub slurp { scalar read_file @_ }

sub mktree {
	my ($file) = @_;



( run in 0.217 second using v1.01-cache-2.11-cpan-299005ec8e3 )