Exemple #1
0
 def test_strip_comments_unchanged(self):
     assert strip_comments("some code\n") == "some code\n"
Exemple #2
0
 def test_strip_comments_unchanged(self):
     assert strip_comments("some code\n") == "some code\n"
Exemple #3
0
 def test_strip_comments(self):
     assert strip_comments("# some comment\n") == ""
Exemple #4
0
 def test_strip_comments(self):
     assert strip_comments("# some comment\n") == ""