-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnode_spec.rb
More file actions
38 lines (27 loc) · 1.26 KB
/
node_spec.rb
File metadata and controls
38 lines (27 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
require 'ecloud/spec_helper'
if Fog.mocking?
describe "Fog::Compute::Ecloud::Node", :type => :mock_tmrk_ecloud_model do
subject { @vcloud.vdcs.first.public_ips.first.internet_services.first.nodes.first }
describe :class do
subject { Fog::Compute::Ecloud::Node }
it { should have_identity(:href) }
it { should have_only_these_attributes([:href, :ip_address, :description, :name, :port, :enabled, :id]) }
end
context "with no uri" do
subject { Fog::Compute::Ecloud::Node.new() }
it { should have_all_attributes_be_nil }
end
context "as a collection member" do
subject { @vcloud.vdcs.first.public_ips.first.internet_services.first.nodes.first.reload }
it { should be_an_instance_of(Fog::Compute::Ecloud::Node) }
its(:href) { should == @mock_node.href }
its(:identity) { should == @mock_node.href }
its(:name) { should == @mock_node.name }
its(:id) { should == @mock_node.object_id.to_s }
its(:port) { should == @mock_node.port.to_s }
its(:enabled) { should == @mock_node.enabled.to_s }
its(:description) { should == @mock_node.description }
end
end
else
end