fog/fog-openstack

View on GitHub
lib/fog/openstack/baremetal/requests/list_ports_detailed.rb

Summary

Maintainability
A
55 mins
Test Coverage
module Fog
  module OpenStack
    class Baremetal
      class Real
        def list_ports_detailed(options = {})
          request(
            :expects => [200, 204],
            :method  => 'GET',
            :path    => 'ports/detail',
            :query   => options
          )
        end
      end

      class Mock
        def list_ports_detailed(_options = {})
          response = Excon::Response.new
          response.status = [200, 204][rand(2)]
          response.body = {"ports" => data[:ports]}
          response
        end
      end
    end
  end
end