コード例 #1
0
ファイル: test_helpers.py プロジェクト: lgrawet/lrbd
 def test_strip_comments_unchanged(self):
     assert strip_comments("some code\n") == "some code\n"
コード例 #2
0
 def test_strip_comments_unchanged(self):
     assert strip_comments("some code\n") == "some code\n"
コード例 #3
0
ファイル: test_helpers.py プロジェクト: lgrawet/lrbd
 def test_strip_comments(self):
     assert strip_comments("# some comment\n") == ""
コード例 #4
0
 def test_strip_comments(self):
     assert strip_comments("# some comment\n") == ""