pytest的TestSlide fixture
项目描述
TestSlide 是pytest的fixture。
快速入门
安装
pip install pytest-testslide
在您的测试文件中
import pytest
from pytest_testslide import testslide
from testslide import StrictMock # if you wish to use StrictMock
from testslide import matchers # if you wish to use Rspec style argument matchers
.....
def test_mock_callable_patching_works(testslide):
testslide.mock_callable(time, "sleep").to_raise(RuntimeError("Mocked!")) #mock_callable
with pytest.raises(RuntimeError):
time.sleep()
@pytest.mark.asyncio
async def test_mock_async_callable_patching_works(testslide):
testslide.mock_async_callable(sample_module.ParentTarget, "async_static_method").to_raise(RuntimeError("Mocked!")) #mock_async_callable
with pytest.raises(RuntimeError):
await sample_module.ParentTarget.async_static_method("a", "b")
def test_mock_constructor_patching_works(testslide):
testslide.mock_constructor(sample_module, "ParentTarget").to_raise(RuntimeError("Mocked!")) #mock_constructor
with pytest.raises(RuntimeError):
sample_module.ParentTarget()
def test_patch_attribute_patching_works(testslide):
testslide.patch_attribute(sample_module.SomeClass, "attribute", "patched") #patch_attribute
assert sample_module.SomeClass.attribute == "patched"
项目详情
关闭
pytest-testslide-2.6.3.tar.gz 的哈希值
算法 | 哈希摘要 | |
---|---|---|
SHA256 | b412bbe37711f6e4263b55363286ebd5fe021fbef3bdfa1a4f4bce8723719568 |
|
MD5 | 590fba2d2bf726e21e607a0bb3bc49dd |
|
BLAKE2b-256 | 50b7238e73b7d946bfdabf9f484a5902fee52be6c304b2e1b63aa6c2df0192e5 |
关闭
pytest_testslide-2.6.3-py3-none-any.whl 的哈希值
算法 | 哈希摘要 | |
---|---|---|
SHA256 | 4bbce871a66e204b8ac3750a4cca5ca1eec44dba45649fcbad14651e7083bfea |
|
MD5 | bde0eb5c52c02d198029bf768a7754a3 |
|
BLAKE2b-256 | f109760b5a7d9de98554918cdbedcc0ed2fab689aae9689290d330187757b34e |