1from tests.package.test_perl import TestPerlBase 2 3 4class TestPerlGDGraph(TestPerlBase): 5 """ 6 package: 7 GDGraph 8 direct dependencies: 9 GD XS 10 GDTextUtil 11 """ 12 13 config = TestPerlBase.config + \ 14 """ 15 BR2_PACKAGE_PERL=y 16 BR2_PACKAGE_PERL_GDGRAPH=y 17 """ 18 19 def test_run(self): 20 self.login() 21 self.module_test("GD") 22 self.module_test("GD::Graph") 23