view _test/DOM.t @ 197:6b1dda998839

Added IMPL::declare, IMPL::require, to simplify module definitions IMPL::Transform now admires object inheritance while searching for the transformation Added HTTP some exceptions IMPL::Web::Application::RestResource almost implemented
author sergey
date Thu, 19 Apr 2012 02:10:02 +0400
parents d1676be8afcc
children
line wrap: on
line source

#!/usr/bin/perl -w
use strict;
use lib '../Lib';
use lib '.';

use IMPL::Test::Plan;
use IMPL::Test::TAPListener;

my $plan = new IMPL::Test::Plan qw(
    Test::DOM::Node
    Test::DOM::Navigator
    Test::DOM::Schema
    Test::DOM::Builder
);

$plan->AddListener(new IMPL::Test::TAPListener);
$plan->Prepare();
$plan->Run();