Sha256: 89193c21e321ebcab2a764508fd1f3430209ad5e30b200b5d8eb1b1d648b1ec4

Contents?: true

Size: 618 Bytes

Versions: 54

Compression:

Stored size: 618 Bytes

Contents

class Ey::Core::Client
  class Real
    def get_provider_location(params={})
      id  = params.delete("id")
      url = params.delete("url")

      request(
        :path => "/provider-locations/#{id}",
        :url  => url
      )
    end
  end

  class Mock
    def get_provider_location(params={})
      extract_url_params!(params)

      identity = params["id"] || params["provider_location"]

      provider_location = self.find(:provider_locations, identity)
      body = provider_location.dup
      body.delete("name")

      response(
        :body => {"provider_location" => body},
      )
    end
  end
end

Version data entries

54 entries across 54 versions & 3 rubygems

Version Path
ey-core-3.6.0.autoscaling1 lib/ey-core/requests/get_provider_location.rb
ey-core-3.6.4 lib/ey-core/requests/get_provider_location.rb
ey-core-3.6.3 lib/ey-core/requests/get_provider_location.rb
ey-core-3.6.1 lib/ey-core/requests/get_provider_location.rb
groove-ey-core-3.6.3 lib/ey-core/requests/get_provider_location.rb
groove-ey-core-3.6.2 lib/ey-core/requests/get_provider_location.rb
groove-ey-core-3.6.1 lib/ey-core/requests/get_provider_location.rb
ey-core-3.5.0 lib/ey-core/requests/get_provider_location.rb
ey-core-3.4.4 lib/ey-core/requests/get_provider_location.rb
ey-core-3.4.2 lib/ey-core/requests/get_provider_location.rb
ey-core-3.4.1 lib/ey-core/requests/get_provider_location.rb
ey-core-3.4.0 lib/ey-core/requests/get_provider_location.rb
ey-core-3.3.1 lib/ey-core/requests/get_provider_location.rb
ey-core-3.3.0 lib/ey-core/requests/get_provider_location.rb
ey-core-3.2.6 lib/ey-core/requests/get_provider_location.rb
ey-core-3.2.5 lib/ey-core/requests/get_provider_location.rb
ey-core-3.2.4 lib/ey-core/requests/get_provider_location.rb
ey-core-3.2.3 lib/ey-core/requests/get_provider_location.rb
ey-core-3.2.2 lib/ey-core/requests/get_provider_location.rb
ey-core-3.2.1 lib/ey-core/requests/get_provider_location.rb