"""
post_merge_probe smoke fallback 보장 테스트 (task-2431).

SCOPE_MAP 미매치 또는 changed_paths가 비어 있을 때 post_merge_probe가
호출하는 smoke 디렉토리에 최소 1개의 PASS 테스트가 존재해야 한다.
이 파일이 존재하지 않으면 unmapped PR이 무검증 PASS로 통과하므로
회귀 가드로 유지한다.
"""


def test_smoke_baseline_pass():
    """가장 가벼운 smoke 보증: 1+1==2."""
    assert 1 + 1 == 2


def test_smoke_python_runtime_alive():
    """파이썬 런타임이 정상 동작하는지 검증."""
    import sys
    assert sys.version_info[0] >= 3
