test_perl_gdgraph.py 432 B

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