Sha256: 51d81f42207b03b3f055361eee3b9daf95af37ecc30b264f0b6344cac5d64d69
Contents?: true
Size: 747 Bytes
Versions: 13
Compression:
Stored size: 747 Bytes
Contents
Shindo.tests('Fog::Compute[:vsphere] | list_networks request', ['vsphere']) do compute = Fog::Compute[:vsphere] tests('The response with datastore filter should') do response = compute.list_networks(datacenter: 'Solutions') test('be a kind of Array') { response.is_a? Array } test('contain Hashes') { response.all? { |i| Hash === i } } test('have 2 elements') { response.length == 2 } end tests('The response with cluster filter should') do response = compute.list_networks(datacenter: 'Solutions', cluster: 'Solutionscluster') test('be a kind of Array') { response.is_a? Array } test('contain Hashes') { response.all? { |i| Hash === i } } test('have a single element') { response.length == 1 } end end
Version data entries
13 entries across 11 versions & 2 rubygems