diff options
Diffstat (limited to 'tests/unit/test-000-imports.py')
-rw-r--r-- | tests/unit/test-000-imports.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/unit/test-000-imports.py b/tests/unit/test-000-imports.py new file mode 100644 index 0000000..17e1c57 --- /dev/null +++ b/tests/unit/test-000-imports.py @@ -0,0 +1,23 @@ +import unittest + +class TestImports(unittest.TestCase): + def test_pykolab(self): + import pykolab + + def test_pykolab_xml(self): + import pykolab.xml + + def test_pykolab_xml_attendee(self): + from pykolab.xml import Attendee + + def test_pykolab_xml_contact(self): + from pykolab.xml import Contact + + def test_pykolab_xml_contactReference(self): + from pykolab.xml import ContactReference + + def test_pykolab_xml_event(self): + from pykolab.xml import Event + +if __name__ == '__main__': + unittest.main() |