mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-19 05:43:51 -09:00
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>
34 lines
663 B
Python
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")
|