Group
Extension

Matches 3

Test-XML ( S/SE/SEMANTICO/Test-XML-0.08.tar.gz, SEMANTICO, 2009; MetaCPAN )
Test-XML/t/basic.t ( view source; MetaCPAN )
 { isnt_xml() };
like( $@, qr/^usage: /, 'isnt_xml() no args failure' );

eval { isnt_xml( '<foo/>' ) };
like( $@, qr/^usage: /, 'isnt_xml() 1 args failure' );

isnt_xml( '<foo />', '<bar />', 'isnt_x
Test-XML ( S/SE/SEMANTICO/Test-XML-0.08.tar.gz, SEMANTICO, 2009; MetaCPAN )
Test-XML/t/order.t ( view source; MetaCPAN )
ODO = 'make order significant';

    isnt_xml(
        '<p>a<b/>c<d/>e</p>',
        '<p>ace<b/><d/></p>',
        'characters are not clustered',
    );

    isnt_xml(
        '<p>a<b/>c<d/>e</p>',
 
       '<p>a<d/>c<b/>e</p>',
        'order is significant',
    );

    isnt_xml(
        '<p><a/><b/></p>',
        '<p><b/><a/></p>',
        'order is significant when not mixed content',
    );

Test-XML ( S/SE/SEMANTICO/Test-XML-0.08.tar.gz, SEMANTICO, 2009; MetaCPAN )
Test-XML/t/whitespace.t ( view source; MetaCPAN )
use Test::More tests => 1;
use Test::XML;

{
    local $TODO = 'make whitespace significant';
    isnt_xml(
        '<p>foo</p>',
        '<p>  foo  </p>',
        'whitespace is significant',
    );

Powered by Groonga
Maintained by Kenichi Ishigaki <ishigaki@cpan.org>. If you find anything, submit it on GitHub.