summaryrefslogtreecommitdiff
path: root/libs/python/pyste/tests/code_testUT.py
blob: 1059570aa94c7c504282dee587eed7113ca02c2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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()