Example #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
Example #2
0
 def test_20(self):
     script = Script()
     script.append("test line")
     script.content = ["what the hell"]
     assert script == ["what the hell"]