Ejemplo n.º 1
0
 def test_21(self):
     script = Script()
     script.append("test line")
     content = ["what the hell"]
     script.content = content
     assert script == ["what the hell"]
     assert script is not content
Ejemplo n.º 2
0
 def test_20(self):
     script = Script()
     script.append("test line")
     script.content = ["what the hell"]
     assert script == ["what the hell"]