forked from josch/img2pdf
7 lines
160 B
Python
7 lines
160 B
Python
import unittest
|
|
import test_img2pdf
|
|
|
|
def test_suite():
|
|
return unittest.TestSuite((
|
|
unittest.makeSuite(test_img2pdf.TestImg2Pdf),
|
|
))
|