(filename: str)
| 6 | |
| 7 | |
| 8 | def fixture_file_path(filename: str) -> str: |
| 9 | absolute_dir = os.path.abspath(os.path.dirname(__file__)) |
| 10 | filename = filename + ".json" |
| 11 | return os.path.join(absolute_dir, "fixtures", filename) |
| 12 | |
| 13 | |
| 14 | ExampleVariables = uritemplate.variable.VariableValueDict |
no outgoing calls
no test coverage detected
searching dependent graphs…