pytest-csv-params/tests/plugin/assets/fruit_test.tpl

14 lines
274 B
Smarty
Raw Normal View History

2022-08-14 22:01:28 +02:00
import pytest
from pytest_csv_params.decorator import csv_params
@csv_params(
id_col="#ID",
data_file=r"{{data_file}}",
data_casts={
"expected_length": int,
}
)
def test_{{test_name}}(word, expected_length):
2022-08-14 22:01:28 +02:00
assert len(word) == expected_length