Sha256: dcf65ea5ff6dc78c8bc89aab4f02d51481bf452e200a5ce44f639151dbd8539a

Contents?: true

Size: 455 Bytes

Versions: 44

Compression:

Stored size: 455 Bytes

Contents

require "helpers/integration_test_helper"
require "securerandom"
require "base64"

class TestComputeSnapshots < FogIntegrationTest
  def setup
    @client = Fog::Compute::Google.new
    # Ensure any resources we create with test prefixes are removed
    Minitest.after_run do
      delete_test_resources
    end
  end

  def test_list_empty_snapshots
    assert_empty @client.snapshots.all
  end

  def delete_test_resources
    # nothing to do
  end
end

Version data entries

44 entries across 44 versions & 2 rubygems

Version Path
fog-google-1.10.0 test/integration/compute/core_compute/test_snapshots.rb
fog-google-1.9.1 test/integration/compute/core_compute/test_snapshots.rb
fog-google-1.9.0 test/integration/compute/core_compute/test_snapshots.rb
fog-google-1.8.2 test/integration/compute/core_compute/test_snapshots.rb
fog-google-1.8.1 test/integration/compute/core_compute/test_snapshots.rb
fog-google-1.8.0 test/integration/compute/core_compute/test_snapshots.rb
fog-google-1.7.1 test/integration/compute/core_compute/test_snapshots.rb
fog-google-1.7.0 test/integration/compute/core_compute/test_snapshots.rb
fog-google-1.6.0 test/integration/compute/test_snapshots.rb
fog-google-1.5.0 test/integration/compute/test_snapshots.rb
fog-google-1.4.0 test/integration/compute/test_snapshots.rb
fog-google-1.3.3 test/integration/compute/test_snapshots.rb
fog-google-1.3.2 test/integration/compute/test_snapshots.rb
fog-google-1.3.1 test/integration/compute/test_snapshots.rb
fog-google-1.3.0 test/integration/compute/test_snapshots.rb
fog-google-1.2.2 test/integration/compute/test_snapshots.rb
fog-google-1.2.1 test/integration/compute/test_snapshots.rb
fog-google-1.2.0 test/integration/compute/test_snapshots.rb
fog-google-1.1.0 test/integration/compute/test_snapshots.rb
fog-google-1.0.1 test/integration/compute/test_snapshots.rb