mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 14:15:30 +00:00
09246b31f2
MozReview-Commit-ID: 1bPUuRQF2lQ
16 lines
335 B
Python
16 lines
335 B
Python
from macholib import MachOStandalone
|
|
|
|
import sys
|
|
if sys.version_info[:2] <= (2,6):
|
|
import unittest2 as unittest
|
|
else:
|
|
import unittest
|
|
|
|
class TestMachOStandalone (unittest.TestCase):
|
|
@unittest.expectedFailure
|
|
def test_missing(self):
|
|
self.fail("tests are missing")
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|