From e54613f40396d2d7c811af906d89ffbaa2f08a64 Mon Sep 17 00:00:00 2001 From: forge-bot Date: Fri, 10 Jul 2026 13:31:12 +0000 Subject: [PATCH] =?UTF-8?q?=EC=A0=84=ED=99=98=20=ED=8C=A8=EB=A6=AC?= =?UTF-8?q?=ED=8B=B0=20=ED=85=8C=EC=8A=A4=ED=8A=B8=EC=99=80=20=EC=A6=9D?= =?UTF-8?q?=EC=A0=81=20=EA=B8=B0=EC=A4=80=20=EC=A0=95=EC=9D=98=20(BAIS-SPR?= =?UTF-8?q?ING-QA-001)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/conversion_tests/test_boundary.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 tests/conversion_tests/test_boundary.py diff --git a/tests/conversion_tests/test_boundary.py b/tests/conversion_tests/test_boundary.py new file mode 100644 index 0000000..58c7858 --- /dev/null +++ b/tests/conversion_tests/test_boundary.py @@ -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