remove some debugging statements
[scpubgit/stemmatology.git] / t / text_tradition_parser_tei.t
CommitLineData
3b853983 1#!/usr/bin/perl -w
2
3use strict;
4use Test::More 'no_plan';
5$| = 1;
6
7
8
9# =begin testing
10{
11use Text::Tradition;
12binmode STDOUT, ":utf8";
13binmode STDERR, ":utf8";
14eval { no warnings; binmode $DB::OUT, ":utf8"; };
15
16my $par_seg = 't/data/florilegium_tei_ps.xml';
17my $t = Text::Tradition->new(
18 'name' => 'inline',
19 'input' => 'TEI',
20 'file' => $par_seg,
21 );
22
23is( ref( $t ), 'Text::Tradition', "Parsed parallel-segmentation TEI" );
24if( $t ) {
56eefa04 25 is( scalar $t->collation->readings, 311, "Collation has all readings" );
26 is( scalar $t->collation->paths, 361, "Collation has all paths" );
3b853983 27}
28}
29
30
31
32# =begin testing
33{
3b853983 34use XML::LibXML;
35use XML::LibXML::XPathContext;
36use Text::Tradition::Parser::TEI;
37
38my $xml_str = '<tei><rdg wit="#A #B #C #D">some text</rdg></tei>';
39my $el = XML::LibXML->new()->parse_string( $xml_str )->documentElement;
40my $xpc = XML::LibXML::XPathContext->new( $el );
41my $obj = $xpc->find( '//rdg' );
42
43my @wits = Text::Tradition::Parser::TEI::_get_sigla( $obj );
44is( join( ' ', @wits) , "A B C D", "correctly parsed reading wit string" );
45}
46
47
48
49
501;