| 1 | import unittest |
| 2 | |
| 3 | class TestBigQueryStorage(unittest.TestCase): |
| 4 | |
| 5 | def test_ensure_bq_storage_is_not_installed(self): |
| 6 | # b/183041606#comment5: Ensures bigquery_storage is not installed. |
| 7 | # bigquery falls back on using regular BQ queries which are supported by the BQ proxy. |
| 8 | with self.assertRaises(ImportError): |
| 9 | from google.cloud import bigquery_storage |
nothing calls this directly
no outgoing calls
no test coverage detected