本文整理汇总了Python中_pytest.monkeypatch.monkeypatch.setattr方法的典型用法代码示例。如果您正苦于以下问题:Python monkeypatch.setattr方法的具体用法?Python monkeypatch.setattr怎么用?Python monkeypatch.setattr使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类_pytest.monkeypatch.monkeypatch
的用法示例。
在下文中一共展示了monkeypatch.setattr方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_issue156_undo_staticmethod
# 需要导入模块: from _pytest.monkeypatch import monkeypatch [as 别名]
# 或者: from _pytest.monkeypatch.monkeypatch import setattr [as 别名]
def test_issue156_undo_staticmethod(Sample):
monkeypatch = MonkeyPatch()
monkeypatch.setattr(Sample, 'hello', None)
assert Sample.hello is None
monkeypatch.undo()
assert Sample.hello()
示例2: test_delattr
# 需要导入模块: from _pytest.monkeypatch import monkeypatch [as 别名]
# 或者: from _pytest.monkeypatch.monkeypatch import setattr [as 别名]
def test_delattr():
class A:
x = 1
monkeypatch = MonkeyPatch()
monkeypatch.delattr(A, 'x')
assert not hasattr(A, 'x')
monkeypatch.undo()
assert A.x == 1
monkeypatch = MonkeyPatch()
monkeypatch.delattr(A, 'x')
pytest.raises(AttributeError, "monkeypatch.delattr(A, 'y')")
monkeypatch.delattr(A, 'y', raising=False)
monkeypatch.setattr(A, 'x', 5, raising=False)
assert A.x == 5
monkeypatch.undo()
assert A.x == 1
示例3: test_setattr
# 需要导入模块: from _pytest.monkeypatch import monkeypatch [as 别名]
# 或者: from _pytest.monkeypatch.monkeypatch import setattr [as 别名]
def test_setattr():
class A:
x = 1
monkeypatch = MonkeyPatch()
pytest.raises(AttributeError, "monkeypatch.setattr(A, 'notexists', 2)")
monkeypatch.setattr(A, 'y', 2, raising=False)
assert A.y == 2
monkeypatch.undo()
assert not hasattr(A, 'y')
monkeypatch = MonkeyPatch()
monkeypatch.setattr(A, 'x', 2)
assert A.x == 2
monkeypatch.setattr(A, 'x', 3)
assert A.x == 3
monkeypatch.undo()
assert A.x == 1
A.x = 5
monkeypatch.undo() # double-undo makes no modification
assert A.x == 5