9 lines
275 B
Python
9 lines
275 B
Python
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
|