(
self: "ClientTest", client: Client, request: FixtureRequest
)
| 19 | |
| 20 | @pytest.fixture(scope="function", autouse=True) |
| 21 | def init( |
| 22 | self: "ClientTest", client: Client, request: FixtureRequest |
| 23 | ) -> Generator[None, None, None]: |
| 24 | ClientTest.gc = client |
| 25 | name = self.get_temporary_spreadsheet_title(request.node.name) |
| 26 | ClientTest.spreadsheet = client.create(name) |
| 27 | |
| 28 | yield |
| 29 | |
| 30 | client.del_spreadsheet(ClientTest.spreadsheet.id) |
| 31 | |
| 32 | @pytest.mark.vcr() |
| 33 | def test_no_found_exeption(self): |
nothing calls this directly
no test coverage detected