We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d911fde commit b29a0dbCopy full SHA for b29a0db
2 files changed
google-cloud-storage/acceptance/storage/file_test.rb
@@ -29,7 +29,9 @@
29
big: { path: "acceptance/data/three-mb-file.tif" } }
30
end
31
32
- let(:bucket_public_test_name) { "storage-library-test-bucket" }
+ let(:bucket_public_test_name) {
33
+ ENV["GCLOUD_TEST_STORAGE_BUCKET"] || "storage-library-test-bucket"
34
+ }
35
let(:file_public_test_gzip_name) { "gzipped-text.txt" } # content is "hello world"
36
37
before do
google-cloud-storage/acceptance/storage/filename_test.rb
@@ -15,7 +15,9 @@
15
require "storage_helper"
16
17
describe Google::Cloud::Storage::File, :storage do
18
- let(:bucket_name) { "storage-library-test-bucket" }
+ let(:bucket_name) {
19
20
21
let :bucket do
22
storage.bucket(bucket_name)
23
0 commit comments