Sha256: 99c10239bc91483382c22bd8ad9aeb69a713b0d2738b362d95c9d712a28d4e89
Contents?: true
Size: 760 Bytes
Versions: 11
Compression:
Stored size: 760 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.to_s}_#{name}" end end
Version data entries
11 entries across 9 versions & 3 rubygems