2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-24 06:02:14 +00:00
Files
python/pyste/tests/example_wrappertestUT.py
2003-03-19 02:47:30 +00:00

12 lines
280 B
Python

import unittest
from wrappertest import *
class WrapperTest(unittest.TestCase):
def testIt(self):
self.assertEqual(Range(10), range(10))
self.assertEqual(C().Mul(10), [x*10 for x in range(10)])
if __name__ == '__main__':
unittest.main()