This change completes a TODO from https://github.com/m-lab/etl/pull/1080 in the worker_test.go to use a fakestorage server to make what was previously an "integration" test a standard, in-memory unit test.
This change also removes two packages that are now unnecessary:
bq - which managed inserts into BigQuery tables, via a Put() method
fake - which implemented an in-memory interface of the bq package's Put() method for unit tests.
This change completes a TODO from https://github.com/m-lab/etl/pull/1080 in the worker_test.go to use a fakestorage server to make what was previously an "integration" test a standard, in-memory unit test.
This change also removes two packages that are now unnecessary:
bq
- which managed inserts into BigQuery tables, via aPut()
methodfake
- which implemented an in-memory interface of thebq
package'sPut()
method for unit tests.Part of:
This change is