Sha256: 40195c06bfa889c86102e94c69b35b687789cbf59b1a740c416e3ecdf9a1b536
Contents?: true
Size: 546 Bytes
Versions: 18
Compression:
Stored size: 546 Bytes
Contents
require File.dirname(__FILE__) + '/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.href } end end
Version data entries
18 entries across 18 versions & 1 rubygems