chore(tests): refactor and move responses tests away from verifications

This commit is contained in:
Ashwin Bharambe 2025-08-07 13:31:11 -07:00
parent 342550c1e2
commit 5744cf7220
36 changed files with 93 additions and 13032 deletions

View file

@ -1,16 +0,0 @@
# Copyright (c) Meta Platforms, Inc. and affiliates.
# All rights reserved.
#
# This source code is licensed under the terms described in the LICENSE file in
# the root directory of this source tree.
from pathlib import Path
import yaml
def load_test_cases(name: str):
fixture_dir = Path(__file__).parent / "test_cases"
yaml_path = fixture_dir / f"{name}.yaml"
with open(yaml_path) as f:
return yaml.safe_load(f)