summaryrefslogtreecommitdiffstats
path: root/python/macholib/macholib_tests/test_itergraphreport.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/macholib/macholib_tests/test_itergraphreport.py')
-rw-r--r--python/macholib/macholib_tests/test_itergraphreport.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/python/macholib/macholib_tests/test_itergraphreport.py b/python/macholib/macholib_tests/test_itergraphreport.py
new file mode 100644
index 000000000..f3e7c28a3
--- /dev/null
+++ b/python/macholib/macholib_tests/test_itergraphreport.py
@@ -0,0 +1,15 @@
+from macholib import itergraphreport
+
+import sys
+if sys.version_info[:2] <= (2,6):
+ import unittest2 as unittest
+else:
+ import unittest
+
+class TestIterGraphReport (unittest.TestCase):
+ @unittest.expectedFailure
+ def test_missing(self):
+ self.fail("tests are missing")
+
+if __name__ == "__main__":
+ unittest.main()