From d7e73ec4c238d0eb1c5493bb90c022d683123296 Mon Sep 17 00:00:00 2001 From: Matěj Cepl Date: Wed, 15 Feb 2012 23:59:42 +0100 Subject: Initial commit with skeleton of the project. Also added original Perl, together with PHP and Javascript ports. --- test/00.load.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 test/00.load.py (limited to 'test/00.load.py') diff --git a/test/00.load.py b/test/00.load.py new file mode 100644 index 0000000..e4f3f5f --- /dev/null +++ b/test/00.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