fog/fog-openstack

View on GitHub
lib/fog/openstack/workflow/v2/requests/list_workflows.rb

Summary

Maintainability
A
1 hr
Test Coverage
module Fog
  module OpenStack
    class Workflow
      class V2
        class Real
          def list_workflows(params = {})
            body = Fog::JSON.encode(params)
            request(
              :body    => body,
              :expects => 200,
              :method  => "GET",
              :path    => "workflows"
            )
          end
        end

        class Mock
          def list_workflows(_params = {})
            response = Excon::Response.new
            response.status = 200
            response.body = {"workflows" =>
                                            [{"name" => "workflow1", "description" => "d1"},
                                             {"name" => "workflow2", "description" => "d2"}]}
            response
          end
        end
      end
    end
  end
end