Files
buildroot/support/testing/tests/package/test_perl_cgi.py
Deividas Puplauskas d5c28aa439 package/perl-cgi: new package
See here for a description:
https://metacpan.org/pod/CGI

Signed-off-by: Deividas Puplauskas <deividas.puplauskas@gmail.com>
Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2026-05-29 18:21:57 +02:00

34 lines
663 B
Python

from tests.package.test_perl import TestPerlBase
class TestPerlCGI(TestPerlBase):
"""
package:
CGI
direct dependencies:
HTML-Parser XS
URI
indirect dependencies:
Clone XS
Encode-Locale
HTML-Tagset
HTTP-Date
HTTP-Message
IO-HTML
LWP-MediaTypes
MIME-Base32
TimeDate
"""
config = TestPerlBase.config + \
"""
BR2_PACKAGE_PERL=y
BR2_PACKAGE_PERL_CGI=y
"""
def test_run(self):
self.login()
self.module_test("Clone")
self.module_test("HTML::Parser")
self.module_test("CGI")