1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/tests/cloudsigma/models/servers_tests.rb
2014-02-11 14:25:24 -07:00

9 lines
416 B
Ruby

Shindo.tests('Fog::Compute[:cloudsigma] | servers collection', ['cloudsigma']) do
# mark as pending, the collection_tests are not quite what in line with how CloudSigma servers operate
pending
servers = Fog::Compute[:cloudsigma].servers
server_create_args = {:name => 'fogtest', :cpu => 2000, :mem => 512*1024**2, :vnc_password => 'myrandompass'}
collection_tests(servers, server_create_args, true)
end