Sha256: 81222f14482bc477e162013b097768c5731e607727770e30be366bde6049fbc5
Contents?: true
Size: 529 Bytes
Versions: 47
Compression:
Stored size: 529 Bytes
Contents
require 'spec_helper' if Fog.mocking? describe Fog::Vcloud, :type => :mock_vcloud_request do subject { Fog::Vcloud.new(:username => "foo", :password => "bar", :versions_uri => "https://fakey.com/api/versions") } it { should be_an_instance_of Fog::Vcloud::Mock } it { should respond_to :default_organization_uri } it { should respond_to :supported_versions } it { should have_at_least(1).supported_versions } its(:default_organization_uri) { should == @mock_organization[:info][:href] } end end
Version data entries
47 entries across 47 versions & 2 rubygems