gecko-dev/python/macholib/macholib_tests/test_mach_o.py
Mike Shal 09246b31f2 Bug 1265272 - Import macholib 1.7; r=ted,gerv
MozReview-Commit-ID: 1bPUuRQF2lQ
2016-04-21 11:46:07 -04:00

21 lines
470 B
Python

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()