コード例 #1
0
 def testStripCommentOnlyComment(self):
     self.assertEqual(parser._stripcomment("# abcd"), "")
コード例 #2
0
 def testStripCommentDoubleComment(self):
     self.assertEqual(parser._stripcomment("ab # cd # ef"), "ab")
コード例 #3
0
 def testStripCommentEmpty(self):
     self.assertEqual(parser._stripcomment(""), "")
コード例 #4
0
 def testStripCommentSmallLine(self):
     self.assertEqual(parser._stripcomment("ab # cd"), "ab")
コード例 #5
0
 def testStripCommentOnlyComment(self):
     self.assertEqual(parser._stripcomment("# abcd"), "")
コード例 #6
0
 def testStripCommentEmpty(self):
     self.assertEqual(parser._stripcomment(""), "")
コード例 #7
0
 def testStripCommentDoubleComment(self):
     self.assertEqual(parser._stripcomment("ab # cd # ef"), "ab")
コード例 #8
0
 def testStripCommentSmallLine(self):
     self.assertEqual(parser._stripcomment("ab # cd"), "ab")