コード例 #1
0
 def test_return_only_firest(self):
     """ if there are semi-colons, forget it"""
     stub = "things\nwith\nnewlines"
     eq_(parse_make(stub), ["things", "with", "newlines"])
コード例 #2
0
 def test_return_empty_on_empty(self):
     eq_(parse_make(""), [])