Sha256: f9c9c68f42bc079c0e0fe037799bd4cd8720f857addf21786b5e6e55f396198b
Contents?: true
Size: 388 Bytes
Versions: 5
Compression:
Stored size: 388 Bytes
Contents
# frozen_string_literal: true require_relative "../test_helper" module Telnyx class ChannelZoneTest < Test::Unit::TestCase should "list channel zones" do channel_zones = ChannelZone.list assert_requested :get, "#{Telnyx.api_base}/v2/channel_zones" assert_kind_of ListObject, channel_zones assert_kind_of TelnyxObject, channel_zones.first end end end
Version data entries
5 entries across 5 versions & 1 rubygems