Class-based pytest parametrization
Project description
pytest-data-suites
Class-based test cases for pytest
.
Installation
pip install pytest-data-suites
Usage example
from pytest_data_suites import DataSuite
class MultiplicationDataSuite(DataSuite):
# Using TypedDict instead of dict here could clarify your code, but that's just a demo
positive_operands = dict(left_operand=2, right_operand=2, operation_result=4)
negative_operands = dict(left_operand=-3, right_operand=-7, operation_result=21)
@MultiplicationDataSuite.parametrize
def test_multiplication(left_operand: float, right_operand: float, operation_result: float) -> None:
assert left_operand * right_operand == operation_result
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Close
Hashes for pytest_data_suites-1.0.5-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f585e47bb813a4bca470c56e367d8e49b60ba34658ee12e4e1e712f36b73b5ed |
|
MD5 | f12b78d3f55220aad464af116cae9d02 |
|
BLAKE2b-256 | 9ba85a4ad72ee857e51ef8b73f478b72c3ccc108a522d4e04ded2f341c4650ff |