()
| 275 | for i, test_case in enumerate(TEST_CASES): |
| 276 | # Create a test function for this case |
| 277 | async def test_func(): |
| 278 | await test_cli_mapping(test_case) |
| 279 | |
| 280 | # Set function name and docstring |
| 281 | test_func.__name__ = f"test_cli_case_{i+1}_{test_case.name.replace(' ', '_').lower()}" |
no test coverage detected