Sha256: ddc7bc25959ea7c5bf0ab095f2be8d5e095059b674f30b8829e4ada4278a11bf

Contents?: true

Size: 994 Bytes

Versions: 5

Compression:

Stored size: 994 Bytes

Contents

# frozen_string_literal: true

require_relative "../test_helper"

module Telnyx
  class GlobalIpTest < Test::Unit::TestCase
    setup do
      @id = "70308070-fb3c-32ee-0a59-ce012cd4840d"
    end
    should "list ips" do
      global_ip = GlobalIp.list
      assert_requested :get, "#{Telnyx.api_base}/v2/global_ips"
      assert_kind_of ListObject, global_ip
      assert_kind_of TelnyxObject, global_ip.first
    end

    should "create global_ip" do
      GlobalIp.create global_ip_address: "0.0.0.0"
      assert_requested :post, "#{Telnyx.api_base}/v2/global_ips"
    end

    should "retrieve global_ip" do
      global_ip = GlobalIp.retrieve(@id)
      assert_requested :get, "#{Telnyx.api_base}/v2/global_ips/#{@id}"
      assert_kind_of GlobalIp, global_ip
    end

    should "delete global_ip" do
      global_ip = GlobalIp.retrieve(@id)
      id = global_ip.id.freeze
      global_ip.delete
      assert_requested :delete, "#{Telnyx.api_base}/v2/global_ips/#{id}"
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
telnyx-3.0.5 test/telnyx/global_ip_test.rb
telnyx-3.0.4 test/telnyx/global_ip_test.rb
telnyx-3.0.3 test/telnyx/global_ip_test.rb
telnyx-3.0.2 test/telnyx/global_ip_test.rb
telnyx-3.0.0 test/telnyx/global_ip_test.rb