Rename delHTMLcom to be in line with other naming conventions and make the function exportable
Change-Id: I46d30891b17a5f2bddf7ddc0c492413cc2af6007
diff --git a/t/tei.t b/t/tei.t
index 5022478..f9b5959 100644
--- a/t/tei.t
+++ b/t/tei.t
@@ -8,7 +8,7 @@
unshift @INC, "$FindBin::Bin/../lib";
};
-require_ok('KorAP::XML::TEI');
+use_ok('KorAP::XML::TEI', 'remove_xml_comments');
my ($fh, $filename) = tempfile();
@@ -19,13 +19,13 @@
Test
HTML
-is(KorAP::XML::TEI::delHTMLcom($fh, "hallo"),"hallo");
-is(KorAP::XML::TEI::delHTMLcom($fh, "hallo <!-- Test -->"),"hallo ");
-is(KorAP::XML::TEI::delHTMLcom($fh, "<!-- Test --> hallo")," hallo");
+is(remove_xml_comments($fh, "hallo"),"hallo");
+is(remove_xml_comments($fh, "hallo <!-- Test -->"),"hallo ");
+is(remove_xml_comments($fh, "<!-- Test --> hallo")," hallo");
seek($fh, 0, 0);
-is(KorAP::XML::TEI::delHTMLcom($fh, '<!--'), "Test\n");
+is(remove_xml_comments($fh, '<!--'), "Test\n");
seek($fh, 0, 0);
@@ -38,7 +38,7 @@
seek($fh, 0, 0);
-is(KorAP::XML::TEI::delHTMLcom($fh, 'Dies <!--'), "Dies ist ein Test\n");
+is(remove_xml_comments($fh, 'Dies <!--'), "Dies ist ein Test\n");
close($fh);