The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
# Before `make install' is performed this script should be runnable with
# `make test'. After `make install' it should work as `perl 1.t'

#########################

# change 'tests => 1' to 'tests => last_test_to_print';

use Test::More tests => 11;

#use Test::More (no_plan);
use Data::Dumper;
use strict;

BEGIN {
    use_ok('WebDAO');
    use_ok('WebDAO::Engine');
    use_ok('WebDAO::Lex');
    use_ok('WebDAO::Container');
    use_ok('WebDAO::SessionSH');
    use lib 't/lib';
    use_ok('TestWDAO');
}
my $ID = "tcontainer";
ok( ( my $session = new WebDAO::SessionSH::),
    "Create session" );
$session->U_id($ID);

my $str = join "", <DATA>;
ok( my $lex = ( new WebDAO::Lex:: tmpl => $str ),
    "Create Lexer" );
isa_ok( $lex, "WebDAO::Lex" );
my $eng = new WebDAO::Engine::
  session => $session,
  lex   => $lex,
  ;
my ($lmethod) =
  grep { $_->isa('WebDAO::Lib::MethodByPath') } @{ $lex->buld_tree($eng,$str ) };
isa_ok( $lmethod, "WebDAO::Lib::MethodByPath" );
is( $lmethod->fetch($session), 111, "Check call" );

#########################

# Insert your test code below, the Test::More module is use()ed here so read
# its man page ( perldoc Test::More ) for help writing this test script.

__DATA__
<wd>
<regclass class="TestWDAO" alias="testmod"/>
<method path="/testmod1/Echo">111</method>
<object id="testmod1" class="testmod"/>
</wd>