()
| 7 | from google.cloud import storage |
| 8 | |
| 9 | def _make_credentials(): |
| 10 | import google.auth.credentials |
| 11 | credentials = Mock(spec=google.auth.credentials.Credentials) |
| 12 | credentials.universe_domain = 'googleapis.com' |
| 13 | return credentials |
| 14 | |
| 15 | class TestStorage(unittest.TestCase): |
| 16 |