You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
img2pdf/src/tests/__init__.py

8 lines
160 B
Python

import unittest
import test_img2pdf
def test_suite():
return unittest.TestSuite((
unittest.makeSuite(test_img2pdf.TestImg2Pdf),
))