Changeset 2188 for libswish3/trunk/src/t
- Timestamp:
- 11/03/08 21:44:48 (2 months ago)
- Files:
-
- libswish3/trunk/src/t/001-wordcount.t (modified) (2 diffs)
- libswish3/trunk/src/t/003-properties.t (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
libswish3/trunk/src/t/001-wordcount.t
r2158 r2188 3 3 use strict; 4 4 use warnings; 5 use Test::More tests => 2 5;5 use Test::More tests => 26; 6 6 use SwishTestUtils; 7 7 … … 30 30 'inline.xml' => 12, 31 31 'inline.html' => 9, 32 'dom.xml' => 3, 32 33 33 34 ); libswish3/trunk/src/t/003-properties.t
r2142 r2188 2 2 use strict; 3 3 use warnings; 4 use Test::More tests => 2;4 use Test::More tests => 3; 5 5 use SwishTestUtils; 6 6 … … 18 18 ); 19 19 20 $buf = SwishTestUtils::run_lint_stderr( 'dom.xml', 'dom.conf' ); 21 22 # the dot . is the TOKENPOS_BUMPER delimiter 23 like( $buf, qr!<doc\.one\.two>green.yellow</doc\.one\.two>!, "dom" ); 24 20 25 #diag($buf);
