(self)
| 67 | |
| 68 | class ParseTest(unittest.TestCase): |
| 69 | def testEmptyCode(self): |
| 70 | pythonFileNode = splootFromPython('') |
| 71 | self.assertEqual(pythonFileNode, { |
| 72 | 'type': 'PYTHON_FILE', |
| 73 | 'childSets': {'body': []}, |
| 74 | 'properties': {} |
| 75 | }) |
| 76 | |
| 77 | def testHelloName(self): |
| 78 | self.maxDiff = None |
nothing calls this directly
no test coverage detected