Skip to content

Commit

Permalink
use valid ISO-8601 format for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
tokuhirom committed Sep 27, 2010
1 parent bfbef01 commit 578acb8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions t/RPC-XML-Parser-LibXML.t
Original file line number Diff line number Diff line change
Expand Up @@ -116,14 +116,14 @@ _is_deeply parse_rpc_xml(qq{
<methodCall>
<methodName>foo.bar</methodName>
<params>
<param><value><dateTime.iso8601>20070501T120656+0900</dateTime.iso8601></value></param>
<param><value><dateTime.iso8601>20070501T12:06:56</dateTime.iso8601></value></param>
</params>
</methodCall>
}), RPC::XML::request->new(
'foo.bar',
RPC::XML::datetime_iso8601->new('20070501T120656+0900'),
RPC::XML::datetime_iso8601->new('20070501T12:06:56'),
),
'methodCall w/ [20070501T120656+0900::dateTime.iso8601]';
'methodCall w/ [20070501T12:06:56::dateTime.iso8601]';

_is_deeply parse_rpc_xml(qq{
<methodCall>
Expand Down

0 comments on commit 578acb8

Please sign in to comment.