diff options
author | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2012-05-23 14:00:55 +0100 |
---|---|---|
committer | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2012-05-23 14:00:55 +0100 |
commit | 84992b37c15405a6276ced189a9de185c000a3da (patch) | |
tree | 8f62408ac536ad7840e0b8d192bf28e897664b46 /tests/test-000-imports.py | |
parent | 8dbdba5cc919cefc5b4ab12f2b2cfeb14b2c4ae1 (diff) | |
download | pykolab-84992b37c15405a6276ced189a9de185c000a3da.tar.gz |
Rename test files to at least somewhat indicate what each of them is for.
Add tests for contact references
Diffstat (limited to 'tests/test-000-imports.py')
-rw-r--r-- | tests/test-000-imports.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/test-000-imports.py b/tests/test-000-imports.py new file mode 100644 index 0000000..17e1c57 --- /dev/null +++ b/tests/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() |