mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
11 lines
264 B
Ruby
11 lines
264 B
Ruby
|
Shindo.tests('Fog::Compute::RackspaceV2 | network', ['rackspace']) do
|
||
|
service = Fog::Compute::RackspaceV2.new
|
||
|
|
||
|
options = {
|
||
|
:label => "fog_network_#{Time.now.to_i.to_s}",
|
||
|
:cidr => '192.168.0.0/24'
|
||
|
}
|
||
|
|
||
|
model_tests(service.networks, options, true)
|
||
|
end
|