コード例 #1
0
 def test_field_short_int(self):
     r = Reader(struct.pack('>hh', 256, -256))
     assert_equals(256, r._field_short_int())
     assert_equals(-256, r._field_short_int())
     assert_equals(4, r._pos)