Sha256: d8ed1084787284cb4b7a8b5a7e1fa8203ca515e212b3f411ac1ac1c045ab11fd

Contents?: true

Size: 512 Bytes

Versions: 5

Compression:

Stored size: 512 Bytes

Contents

# frozen_string_literal: true

require_relative "../test_helper"

module Telnyx
  class CustomStorageCredentialTest < Test::Unit::TestCase
    setup do
      @connection_id = "d25f43b3-aea3-6a5d-7a1b-d83e5c100cce".freeze
    end

    should "retrieve Custom Storage Credential" do
      custom = CustomStorageCredential.retrieve @connection_id
      assert_requested(:get, "#{Telnyx.api_base}/v2/custom_storage_credentials/#{@connection_id}")
      assert custom.is_a?(CustomStorageCredential)
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

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