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.0.0 test/integration/compute/test_snapshots.rb
fog-google-0.6.0 test/integration/compute/test_snapshots.rb
fog-google-0.5.5 test/integration/compute/test_snapshots.rb
fog-google-0.5.4 test/integration/compute/test_snapshots.rb