aboutsummaryrefslogblamecommitdiffstats
path: root/tests/importer_tests.py
blob: 91f82cc0921fc9e507abdd515823a531aeacc863 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                             
import unittest

from sos.utilities import ImporterHelper

class ImporterHelperTests(unittest.TestCase):

    def test_runs(self):
        h = ImporterHelper(unittest)
        modules = h.get_modules()
        self.assertTrue('main' in modules)

if __name__ == "__main__":
    unittest.main()