blob: 0fbcf04b2f8274998c7df14571928ba93cdb4da9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
from macholib import mach_o
import sys
if sys.version_info[:2] <= (2,6):
import unittest2 as unittest
else:
import unittest
class TestMachO (unittest.TestCase):
# This module is just a set of struct definitions,
# not sure how to test those without replicating
# the code.
#
# The definitions will get exercised by the
# other tests, therefore testing is ignored
# for now.
pass
if __name__ == "__main__":
unittest.main()
|