Sha256: 69ffb3e11924d58bc62d66b9a6ab20e96562fe2ab58bf28c111bce07f00ad29a
Contents?: true
Size: 755 Bytes
Versions: 14
Compression:
Stored size: 755 Bytes
Contents
require "helpers/test_helper" require "helpers/test_collection" # Use :test credentials in ~/.fog for live integration testing # XXX not sure if this will work on Travis CI or not Fog.credential = :test # Helpers TEST_ZONE = "us-central1-f" TEST_REGION = "us-central1" TEST_SIZE_GB = 10 TEST_MACHINE_TYPE = "n1-standard-1" # XXX This depends on a public image in gs://fog-test-bucket; there may be a better way to do this # The image was created like so: https://cloud.google.com/compute/docs/images#export_an_image_to_google_cloud_storage TEST_RAW_DISK_SOURCE = "http://storage.googleapis.com/fog-test-bucket/fog-test-raw-disk-source.image.tar.gz" class FogIntegrationTest < MiniTest::Test def namespaced_name "#{self.class}_#{name}" end end
Version data entries
14 entries across 14 versions & 1 rubygems