module Fog
  module Identity
    class OpenStack
      class V3
        class Real
          def list_user_projects(user_id, options = {})
            request(
              :expects => [200],
              :method  => 'GET',
              :path    => "users/#{user_id}/projects",
              :query   => options
            )
          end
        end

        class Mock
          def list_user_projects
          end
        end
      end
    end
  end
end