Mercurial > pub > Impl
annotate _test/DOM.t @ 18:818c74b038ae
DOM Schema + tests
| author | Sergey |
|---|---|
| date | Thu, 10 Sep 2009 17:42:47 +0400 |
| parents | 65a7bb156fb7 |
| children | 1ca530e5c9c5 |
| rev | line source |
|---|---|
| 11 | 1 #!/usr/bin/perl -w |
| 2 use strict; | |
| 3 use lib '../Lib'; | |
| 4 use lib '.'; | |
| 5 | |
| 6 use IMPL::Test::Plan; | |
| 7 use IMPL::Test::TAPListener; | |
| 8 | |
| 9 my $plan = new IMPL::Test::Plan qw( | |
| 18 | 10 Test::DOM::Node |
| 11 | 11 Test::DOM::Navigator |
| 12 ); | |
| 13 | |
| 14 $plan->AddListener(new IMPL::Test::TAPListener); | |
| 15 $plan->Prepare(); | |
| 16 $plan->Run(); |
