This commit is contained in:
parent
0c6dd9455f
commit
e54613f403
1 changed files with 9 additions and 0 deletions
9
tests/conversion_tests/test_boundary.py
Normal file
9
tests/conversion_tests/test_boundary.py
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
import pytest
|
||||||
|
|
||||||
|
@pytest.mark.parametrize('input_data, expected', [
|
||||||
|
('boundary_case_1', 'expected_result_1'),
|
||||||
|
('boundary_case_2', 'expected_result_2')
|
||||||
|
])
|
||||||
|
def test_boundary_conversion(input_data, expected):
|
||||||
|
result = convert(input_data)
|
||||||
|
assert result == expected
|
||||||
Loading…
Add table
Add a link
Reference in a new issue