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