전환 패리티 테스트와 증적 기준 정의 (BAIS-SPRING-QA-001)
Some checks are pending
ci / test (push) Waiting to run

This commit is contained in:
forge-bot 2026-07-10 13:31:13 +00:00
parent e54613f403
commit 0eda7d2308

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