Sha256: 21704b3012cb1912d9419d1a820bb5df9b7f0309882816aebd9a8cdda4c51e06

Contents?: true

Size: 1.31 KB

Versions: 1

Compression:

Stored size: 1.31 KB

Contents

##
# This code was generated by
# \ / _    _  _|   _  _
#  | (_)\/(_)(_|\/| |(/_  v1.0.0
#       /       /

require 'spec_helper.rb'

describe 'Number' do
  it "can fetch" do
    @holodeck.mock(Twilio::Response.new(500, ''))

    expect {
      @client.pricing.v1.voice \
                        .numbers('+15017122661').fetch()
    }.to raise_exception(Twilio::REST::TwilioError)

    values = {}
    expect(
    @holodeck.has_request?(Holodeck::Request.new(
        method: 'get',
        url: 'https://pricing.twilio.com/v1/Voice/Numbers/+15017122661',
    ))).to eq(true)
  end

  it "receives fetch responses" do
    @holodeck.mock(Twilio::Response.new(
        200,
      %q[
      {
          "country": "Iran",
          "inbound_call_price": {
              "base_price": null,
              "current_price": null,
              "number_type": null
          },
          "iso_country": "IR",
          "number": "+987654321",
          "outbound_call_price": {
              "base_price": "0.255",
              "current_price": "0.255"
          },
          "price_unit": "USD",
          "url": "https://pricing.twilio.com/v1/Voice/Numbers/+987654321"
      }
      ]
    ))

    actual = @client.pricing.v1.voice \
                               .numbers('+15017122661').fetch()

    expect(actual).to_not eq(nil)
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
twilio-ruby-5.8.1 spec/integration/pricing/v1/voice/number_spec.rb