()
| 13 | |
| 14 | @pytest.fixture(scope='module') |
| 15 | def teams(): |
| 16 | token_backend = FileSystemTokenBackend('.//') |
| 17 | credentials = (config.CLIENT_ID, config.CLIENT_SECRET) |
| 18 | account = Account(credentials, scopes=TEST_SCOPES, |
| 19 | token_backend=token_backend) |
| 20 | yield account.teams() |
| 21 | |
| 22 | |
| 23 | class TestTeams: |
nothing calls this directly
no test coverage detected