Sha256: fffc778ec4ae7aa5e286ecd4f724d20fcb8388b774e6e37a58f36e1e06898905
Contents?: true
Size: 675 Bytes
Versions: 42
Compression:
Stored size: 675 Bytes
Contents
module Fog module Workflow class OpenStack class V2 class Real def get_workflow(identifier) request( :expects => 200, :method => "GET", :path => "workflows/#{identifier}" ) end end class Mock def get_workflow(_identifier) response = Excon::Response.new response.status = 200 response.body = {"version" => "2.0", "name" => "workflow1", "description" => "d1"} response end end end end end end
Version data entries
42 entries across 40 versions & 3 rubygems