summaryrefslogtreecommitdiff
path: root/libs/python/pyste/tests/code_testUT.py
diff options
context:
space:
mode:
Diffstat (limited to 'libs/python/pyste/tests/code_testUT.py')
-rw-r--r--libs/python/pyste/tests/code_testUT.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/libs/python/pyste/tests/code_testUT.py b/libs/python/pyste/tests/code_testUT.py
new file mode 100644
index 000000000..1059570aa
--- /dev/null
+++ b/libs/python/pyste/tests/code_testUT.py
@@ -0,0 +1,18 @@
+# Copyright Bruno da Silva de Oliveira 2003. Use, modification and
+# distribution is subject to the Boost Software License, Version 1.0.
+# (See accompanying file LICENSE_1_0.txt or copy at
+# http://www.boost.org/LICENSE_1_0.txt)
+import unittest
+from _code_test import *
+
+class CodeTest(unittest.TestCase):
+
+ def testIt(self):
+ a = A()
+ a.x = 12
+ self.assertEqual(get(a), 12)
+ self.assertEqual(foo(), "Hello!")
+
+
+if __name__ == '__main__':
+ unittest.main()