瀏覽代碼

support/testing: add missing test file for perl-html-parser

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>
Thomas De Schampheleire 5 年之前
父節點
當前提交
0c839dc11c
共有 2 個文件被更改,包括 21 次插入0 次删除
  1. 1 0
      DEVELOPERS
  2. 20 0
      support/testing/tests/package/test_perl_html_parser.py

+ 1 - 0
DEVELOPERS

@@ -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/

+ 20 - 0
support/testing/tests/package/test_perl_html_parser.py

@@ -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")