2011-02-17 10:44:46 -08:00
|
|
|
require 'ecloud/spec_helper'
|
2010-05-02 21:46:43 -07:00
|
|
|
|
2010-06-18 07:58:09 +08:00
|
|
|
if Fog.mocking?
|
2011-02-17 10:44:46 -08:00
|
|
|
describe Fog::Ecloud, :type => :mock_tmrk_ecloud_request do
|
2011-02-16 16:13:09 -08:00
|
|
|
subject { @vcloud }
|
2010-05-02 21:46:43 -07:00
|
|
|
|
2011-02-17 10:44:46 -08:00
|
|
|
it { should be_an_instance_of(Fog::Ecloud::Compute::Mock) }
|
2010-05-02 21:46:43 -07:00
|
|
|
|
2011-02-15 13:47:14 -08:00
|
|
|
it { should respond_to(:default_organization_uri) }
|
2010-05-02 21:46:43 -07:00
|
|
|
|
2011-02-15 13:47:14 -08:00
|
|
|
it { should respond_to(:supported_versions) }
|
2010-05-02 21:46:43 -07:00
|
|
|
|
2010-06-18 07:58:09 +08:00
|
|
|
it { should have_at_least(1).supported_versions }
|
2010-05-02 21:46:43 -07:00
|
|
|
|
2010-10-18 07:06:44 +08:00
|
|
|
its(:default_organization_uri) { should == @mock_organization.href }
|
2010-05-02 21:46:43 -07:00
|
|
|
|
2010-06-18 07:58:09 +08:00
|
|
|
end
|
2010-05-02 21:46:43 -07:00
|
|
|
end
|