Sha256: db6db53528eb9e22965855bb305e64c3b08372298e023a841991a36987b56663

Contents?: true

Size: 453 Bytes

Versions: 54

Compression:

Stored size: 453 Bytes

Contents

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

      request(
        url:   url,
        path:  "/accounts/#{account_id}/costs",
        query: params
      )
    end
  end

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

      response(
        body:   {"costs" => self.data[:costs]},
        status: 200
      )
    end
  end
end

Version data entries

54 entries across 54 versions & 3 rubygems

Version Path
ey-core-3.2.0 lib/ey-core/requests/get_costs.rb
ey-core-3.1.11 lib/ey-core/requests/get_costs.rb
ey-core-3.1.10 lib/ey-core/requests/get_costs.rb
ey-core-3.1.9 lib/ey-core/requests/get_costs.rb
ey-core-3.1.8 lib/ey-core/requests/get_costs.rb
ey-core-3.1.7 lib/ey-core/requests/get_costs.rb
ey-core-3.1.6 lib/ey-core/requests/get_costs.rb
ey-core-3.1.5 lib/ey-core/requests/get_costs.rb
ey-core-3.1.4 lib/ey-core/requests/get_costs.rb
ey-core-3.1.3 lib/ey-core/requests/get_costs.rb
ey-core-3.1.2 lib/ey-core/requests/get_costs.rb
ey-core-3.1.1 lib/ey-core/requests/get_costs.rb
ey-core-3.1.0 lib/ey-core/requests/get_costs.rb
ey-core-3.0.5 lib/ey-core/requests/get_costs.rb
ey-core-3.0.4 lib/ey-core/requests/get_costs.rb
ey-core-3.0.3 lib/ey-core/requests/get_costs.rb
ey-core-3.0.2 lib/ey-core/requests/get_costs.rb
ey-core-3.0.1 lib/ey-core/requests/get_costs.rb
ey-core-3.0.0 lib/ey-core/requests/get_costs.rb
ey-pro-cli-0.0.17 lib/vendor/core/ey-core/requests/get_costs.rb