Compare commits

..

5 commits

Author SHA1 Message Date
182cad2946 전환 패리티 테스트와 증적 기준 정의 (BAIS-SPRING-QA-001)
Some checks failed
ci / test (push) Failing after 9s
ci / test (pull_request) Failing after 9s
2026-07-10 13:31:14 +00:00
0eda7d2308 전환 패리티 테스트와 증적 기준 정의 (BAIS-SPRING-QA-001)
Some checks are pending
ci / test (push) Waiting to run
2026-07-10 13:31:13 +00:00
e54613f403 전환 패리티 테스트와 증적 기준 정의 (BAIS-SPRING-QA-001)
Some checks are pending
ci / test (push) Waiting to run
2026-07-10 13:31:12 +00:00
0c6dd9455f 전환 패리티 테스트와 증적 기준 정의 (BAIS-SPRING-QA-001)
Some checks are pending
ci / test (push) Waiting to run
2026-07-10 13:31:11 +00:00
9c33e3e052 forge: open work branch for BAIS-SPRING-QA-001-attempt-1
Some checks failed
ci / test (push) Has been cancelled
2026-07-10 13:31:02 +00:00
5 changed files with 39 additions and 0 deletions

View file

@ -0,0 +1,3 @@
# BAIS-SPRING-QA-001-attempt-1
Forge 이슈 작업 브랜치 `forge/BAIS-SPRING-QA-001-attempt-1`.

View 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

View file

@ -0,0 +1,14 @@
import pytest
@pytest.fixture
def golden_fixture():
return {
'input': 'test_input',
'expected_output': 'expected_result'
}
def test_golden_conversion(golden_fixture):
input_data = golden_fixture['input']
expected = golden_fixture['expected_output']
result = convert(input_data)
assert result == expected

View file

@ -0,0 +1,6 @@
import pytest
def test_output_contract_reviewable():
output = generate_output()
assert output['reviewable'] is True
assert 'required_field' in output

View file

@ -0,0 +1,7 @@
import pytest
def test_sql_mapping():
sql_query = 'SELECT * FROM conversions WHERE condition'
expected_mapping = {'column1': 'mapped_column1', 'column2': 'mapped_column2'}
result = execute_sql_mapping(sql_query)
assert result == expected_mapping