mirror of
https://github.com/boostorg/python.git
synced 2026-01-23 05:42:30 +00:00
12 lines
280 B
Python
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()
|