(self)
| 21 | self.assertEqual(result, original) |
| 22 | |
| 23 | def testComments(self): |
| 24 | original = "# Something is going on here!\nprint('Hello, World!')" |
| 25 | sploot = splootFromPython(original) |
| 26 | result = convertSplootToText(sploot) |
| 27 | self.assertEqual(result, original) |
| 28 | |
| 29 | def testLineGaps(self): |
| 30 | original = "# Something is going on here!\n##SPLOOTCODEEMPTYLINE\nprint('Hello, World!')\n##SPLOOTCODEEMPTYLINE\n##SPLOOTCODEEMPTYLINE" |
nothing calls this directly
no test coverage detected