Show
Ignore:
Timestamp:
11/03/08 21:44:48 (2 months ago)
Author:
karpet
Message:

first pass at the dom-specific property and metaname feature.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • libswish3/trunk/src/t/001-wordcount.t

    r2158 r2188  
    33use strict; 
    44use warnings; 
    5 use Test::More tests => 25
     5use Test::More tests => 26
    66use SwishTestUtils; 
    77 
     
    3030    'inline.xml'       => 12, 
    3131    'inline.html'      => 9, 
     32    'dom.xml'          => 3, 
    3233 
    3334); 
  • libswish3/trunk/src/t/003-properties.t

    r2142 r2188  
    22use strict; 
    33use warnings; 
    4 use Test::More tests => 2
     4use Test::More tests => 3
    55use SwishTestUtils; 
    66 
     
    1818); 
    1919 
     20$buf = SwishTestUtils::run_lint_stderr( 'dom.xml', 'dom.conf' ); 
     21 
     22# the dot . is the TOKENPOS_BUMPER delimiter 
     23like( $buf, qr!<doc\.one\.two>green.yellow</doc\.one\.two>!, "dom" ); 
     24 
    2025#diag($buf);