aboutsummaryrefslogtreecommitdiffstats
path: root/tests/importer_tests.py
blob: 2182ca269b4e40aee14518c787662f7a975d69cd (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: set et ts=4 sw=4 :