Sha256: 342240178fa9f5555598349c149f2b9d06b75114ab9b12ca5563c3279231c9c1
Contents?: true
Size: 1.84 KB
Versions: 7
Compression:
Stored size: 1.84 KB
Contents
require File.dirname(__FILE__) + '/../test_helper' class RecordingTest < Test::Unit::TestCase #:nodoc: all context "A recording" do setup do @connection = Twilio::Connection.new('mysid', 'mytoken') @recording = Twilio::Recording.new(@connection) end should "be retrievable as a list" do fake_response = fixture(:recordings) FakeWeb.register_uri(:get, twilio_url('Recordings'), :string => fake_response) assert_equal @recording.list, fake_response end should "be retrievable individually" do fake_response = fixture(:recording) FakeWeb.register_uri(:get, twilio_url('Recordings/RE41331862605f3d662488fdafda2e175f'), :string => fake_response) assert_equal @recording.get('RE41331862605f3d662488fdafda2e175f'), fake_response end should "be deleted" do FakeWeb.register_uri(:delete, twilio_url('Recordings/RE41331862605f3d662488fdafda2e175f'), :status => [ 204, "HTTPNoContent" ]) response = @recording.delete('RE41331862605f3d662488fdafda2e175f') assert response end context "with transcriptions" do should "be retrievable as a list" do fake_response = fixture(:transcriptions) FakeWeb.register_uri(:get, twilio_url('Recordings/RE41331862605f3d662488fdafda2e175f/Transcriptions'), :string => fake_response) assert_equal @recording.transcriptions('RE41331862605f3d662488fdafda2e175f'), fake_response end should "be retrievable individually" do fake_response = fixture(:transcription) FakeWeb.register_uri(:get, twilio_url('Recordings/RE41331862605f3d662488fdafda2e175f/Transcriptions/TRbdece5b75f2cd8f6ef38e0a10f5c4447'), :string => fake_response) assert_equal @recording.transcriptions('RE41331862605f3d662488fdafda2e175f', 'TRbdece5b75f2cd8f6ef38e0a10f5c4447'), fake_response end end end end
Version data entries
7 entries across 7 versions & 2 rubygems