Sha256: b4369fd99b3fce13d6d241554af460be9df850efd5f990033e737d6426213b71

Contents?: true

Size: 909 Bytes

Versions: 9

Compression:

Stored size: 909 Bytes

Contents

# frozen_string_literal: true

require_relative "../test_helper"

module Telnyx
  class IPTest < Test::Unit::TestCase
    should "list ips" do
      ip = IP.list
      assert_requested :get, "#{Telnyx.api_base}/v2/ips"
      assert_kind_of ListObject, ip
      assert_kind_of IP, ip.first
    end

    should "create ip" do
      IP.create ip_address: "0.0.0.0"
      assert_requested :post, "#{Telnyx.api_base}/v2/ips"
    end

    should "retrieve ip" do
      ip = IP.retrieve("id")
      assert_requested :get, "#{Telnyx.api_base}/v2/ips/id"
      assert_kind_of IP, ip
    end

    should "delete ip" do
      ip = IP.retrieve("id")

      ip.delete
      assert_requested :delete, "#{Telnyx.api_base}/v2/ips/id"
    end

    should "update ip" do
      ip = IP.retrieve("id")

      ip.ip_address = "0.0.0.0"
      ip.save
      assert_requested :patch, "#{Telnyx.api_base}/v2/ips/id"
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
telnyx-2.9.0 test/telnyx/ip_test.rb
telnyx-2.8.0 test/telnyx/ip_test.rb
telnyx-2.7.0 test/telnyx/ip_test.rb
telnyx-2.6.0 test/telnyx/ip_test.rb
telnyx-2.5.0 test/telnyx/ip_test.rb
telnyx-2.4.0 test/telnyx/ip_test.rb
telnyx-2.3.0 test/telnyx/ip_test.rb
telnyx-2.2.0 test/telnyx/ip_test.rb
telnyx-0.1.0 test/telnyx/ip_test.rb