File: test_SymbolTable.py

package info (click to toggle)
python-macholib 1.11%2Brepack0-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 508 kB
  • sloc: python: 4,273; makefile: 127
file content (15 lines) | stat: -rw-r--r-- 327 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from macholib import SymbolTable

import sys
if sys.version_info[:2] <= (2,6):
    import unittest2 as unittest
else:
    import unittest

class TestSymbolTable (unittest.TestCase):
    @unittest.expectedFailure
    def test_missing(self):
        self.fail("tests are missing")

if __name__ == "__main__":
    unittest.main()