From 7d08baca38827b59af9592e415bc4778fb8c4958 Mon Sep 17 00:00:00 2001 From: Matěj Cepl Date: Thu, 16 Feb 2012 16:24:51 +0100 Subject: Start building tests. --- test/load.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 test/load.py (limited to 'test/load.py') 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__) -- cgit