diff options
author | Matěj Cepl <mcepl@redhat.com> | 2012-02-16 16:24:51 +0100 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2012-02-16 16:24:51 +0100 |
commit | 7d08baca38827b59af9592e415bc4778fb8c4958 (patch) | |
tree | f6ad4a356235367d6a741d197e04f619f65c70a2 /test/load.py | |
parent | d7e73ec4c238d0eb1c5493bb90c022d683123296 (diff) | |
download | yamlish-7d08baca38827b59af9592e415bc4778fb8c4958.tar.gz |
Start building tests.
Diffstat (limited to 'test/load.py')
-rw-r--r-- | test/load.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/load.py b/test/load.py new file mode 100644 index 0000000..e4f3f5f --- /dev/null +++ b/test/load.py @@ -0,0 +1,10 @@ +# -*- coding: utf-8 -*- +import unittest + +class TestBasics(unittest.TestCase): + def test_import(self): + import yamlish + from yamlish import Reader + from yamlish import Writer + self.assert_(True, + "Testing import of yamlish, version %s." % yamlish.__version__) |