diff options
Diffstat (limited to 'tests/glibext/objhole.py')
-rw-r--r-- | tests/glibext/objhole.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/glibext/objhole.py b/tests/glibext/objhole.py new file mode 100644 index 0000000..09bd8f5 --- /dev/null +++ b/tests/glibext/objhole.py @@ -0,0 +1,22 @@ + +from chrysacase import ChrysalideTestCase +from pychrysalide.glibext import ThickObject + + +class TestWorks(ChrysalideTestCase): + """TestCase for pychrysalide.glibext.BinaryPortion""" + + def testExtraAccess(self): + """Access to various definitions of the extra data for ThickObject.""" + + obj = ThickObject() + + self.assertEqual(obj.extra, 0) + + obj.extra = 0xffffffe0 + + self.assertEqual(obj.extra, 0xffffffe0) + + obj.extra = 0x00123000 + + self.assertEqual(obj.extra, 0x00123000) |