support/testing: add missing test file for perl-html-parser
authorThomas De Schampheleire <thomas.de_schampheleire@nokia.com>
Mon, 10 Feb 2020 11:26:35 +0000 (12:26 +0100)
committerThomas Petazzoni <thomas.petazzoni@bootlin.com>
Sun, 15 Mar 2020 20:38:56 +0000 (21:38 +0100)
This file was created by utils/scancpan while adding other packages but
apparently not yet added in the repo.

Assign this test case to Bernd in the DEVELOPERS file since he is
listed as the maintainer for this package.

Signed-off-by: Thomas De Schampheleire <thomas.de_schampheleire@nokia.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
DEVELOPERS
support/testing/tests/package/test_perl_html_parser.py [new file with mode: 0644]

index f0a5041a030323c890f20c50f2c83c5827b6167f..bcd293b4fba9301748f2c6eb679a51b88a65ad4d 100644 (file)
@@ -463,6 +463,7 @@ F:  package/x264/
 F:     package/x265/
 F:     package/ytree/
 F:     package/znc/
+F:     support/testing/tests/package/test_perl_html_parser.py
 
 N:     Biagio Montaruli <biagio.hkr@gmail.com>
 F:     board/acmesystems/
diff --git a/support/testing/tests/package/test_perl_html_parser.py b/support/testing/tests/package/test_perl_html_parser.py
new file mode 100644 (file)
index 0000000..6431633
--- /dev/null
@@ -0,0 +1,20 @@
+from tests.package.test_perl import TestPerlBase
+
+
+class TestPerlHTMLParser(TestPerlBase):
+    """
+    package:
+        HTML-Parser   XS
+    direct dependencies:
+        HTML-Tagset
+    """
+
+    config = TestPerlBase.config + \
+        """
+        BR2_PACKAGE_PERL=y
+        BR2_PACKAGE_PERL_HTML_PARSER=y
+        """
+
+    def test_run(self):
+        self.login()
+        self.module_test("HTML::Parser")