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