(argnames, indirect)
| 159 | # use arguments to determine narrow scope; the cause of the bug is that it would look on all |
| 160 | # fixture defs given to the method |
| 161 | def find_scope(argnames, indirect): |
| 162 | return _find_parametrized_scope(argnames, fixtures_defs, indirect=indirect) |
| 163 | |
| 164 | assert find_scope(["func_fix"], indirect=True) == Scope.Function |
| 165 | assert find_scope(["class_fix"], indirect=True) == Scope.Class |
nothing calls this directly
no test coverage detected