(self)
| 3548 | self.produce_global_ext(0x0000abcd, pickle.EXT2) # check endianness |
| 3549 | |
| 3550 | def test_global_ext4(self): |
| 3551 | self.produce_global_ext(0x00010000, pickle.EXT4) # smallest EXT4 code |
| 3552 | self.produce_global_ext(0x7fffffff, pickle.EXT4) # largest EXT4 code |
| 3553 | self.produce_global_ext(0x12abcdef, pickle.EXT4) # check endianness |
| 3554 | |
| 3555 | def test_list_chunking(self): |
| 3556 | n = 10 # too small to chunk |
nothing calls this directly
no test coverage detected