bais-agent-e2e-1783690061/tests/conversion_tests/test_boundary.py
2026-07-10 13:31:12 +00:00

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