전환 패리티 테스트와 증적 기준 정의 #6

Open
forge-bot wants to merge 5 commits from forge/BAIS-SPRING-QA-001-attempt-1 into main
Showing only changes of commit 0eda7d2308 - Show all commits

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