aboutsummaryrefslogtreecommitdiffstats
path: root/tests/importer_tests.py
blob: e7e20a27fd1fbdc306516a49b5d62c129d78e872 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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()

# vim: et ts=4 sw=4