Sha256: 6d207c92aebe2bd49bf9069990b9fbd6ce414d8bbd8d17d7013182612e039a3f
Contents?: true
Size: 603 Bytes
Versions: 10
Compression:
Stored size: 603 Bytes
Contents
module Fog module Compute class CloudAtCost class Real def list_templates request( :expects => [200], :method => 'GET', :path => '/api/v1/listtemplates.php' ) end end # noinspection RubyStringKeysInHashInspection class Mock def list_templates response = Excon::Response.new response.status = 200 response.body = { 'status' => 'OK', 'servers' => self.data[:data] } response end end end end end
Version data entries
10 entries across 8 versions & 2 rubygems