mirror of
https://github.com/boostorg/python.git
synced 2026-01-21 17:12:22 +00:00
21 lines
521 B
Python
21 lines
521 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)])
|
|
|
|
a = A()
|
|
self.assertEqual(a.f(), 10)
|
|
self.assertEqual(call_foo(a), 10)
|
|
class D(A):
|
|
def f(self): return 2
|
|
d = D()
|
|
self.assertEqual(d.f(), 2)
|
|
self.assertEqual(call_foo(d), 2)
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|