コード例 #1
0
ファイル: testcountlines.py プロジェクト: DTDojo/DTDojo
 def testEndLineComments(self):
     testaroo = CountLines()
     newString = testaroo.stripOutLineComments('This is a //test of the JavaScript RegExp object')
     assert newString == 'This is a '
     pass