File: test_MachOStandalone.py

package info (click to toggle)
python-macholib 1.14%2Bds0-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 492 kB
  • sloc: python: 4,125; makefile: 127
file content (18 lines) | stat: -rw-r--r-- 338 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import sys

from macholib import MachOStandalone

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