()
| 99 | |
| 100 | |
| 101 | def test_resolve_file_paths() -> None: |
| 102 | file_paths = resolve_file_paths(get_test_examples_directory()) |
| 103 | |
| 104 | for file_path in file_paths: |
| 105 | assert file_path == get_test_example_file(file_path) |
| 106 | |
| 107 | assert resolve_file_paths('invalid') == [] |
| 108 | |
| 109 | |
| 110 | def test_create_directory() -> None: |
nothing calls this directly
no test coverage detected