fog/fog-openstack

View on GitHub
lib/fog/openstack/identity/v3/requests/list_users.rb

Summary

Maintainability
A
15 mins
Test Coverage
module Fog
  module OpenStack
    class Identity
      class V3
        class Real
          def list_users(options = {})
            request(
              :expects => [200],
              :method  => 'GET',
              :path    => "users",
              :query   => options
            )
          end
        end

        class Mock
          def list_users(options = {})
          end
        end
      end
    end
  end
end