Sha256: e04aaaa734a66ee45cdfe11141c28588e09df2413ee82cdf1c0d75338335f92c
Contents?: true
Size: 572 Bytes
Versions: 54
Compression:
Stored size: 572 Bytes
Contents
# # Author:: Matt Eldridge (<matt.eldridge@us.ibm.com>) # © Copyright IBM Corporation 2014. # # LICENSE: MIT (http://opensource.org/licenses/MIT) # module Fog module Network class Softlayer class Mock def get_private_vlan_price_code 42 end end class Real def get_private_vlan_price_code request(:product_package, '0/get_items').body.map { |item| item['prices'][0]['id'] if item['description'] =~ /vlan/i and item['description'] =~ /private/i }.compact.first end end end end end
Version data entries
54 entries across 52 versions & 3 rubygems