forked from twilio/twilio-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_transcriptions.py
42 lines (28 loc) · 1.07 KB
/
test_transcriptions.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
from mock import patch
from nose.tools import raises
from twilio.rest.resources import Transcriptions
from tools import create_mock_json
BASE_URI = "https://api.twilio.com/2010-04-01/Accounts/AC123"
ACCOUNT_SID = "AC123"
AUTH = (ACCOUNT_SID, "token")
transcriptions = Transcriptions(BASE_URI, AUTH)
@patch("twilio.rest.resources.base.make_twilio_request")
def test_paging(mock):
resp = create_mock_json("tests/resources/transcriptions_list.json")
mock.return_value = resp
uri = "%s/Transcriptions" % (BASE_URI)
transcriptions.list(page=2)
mock.assert_called_with("GET", uri, params={"Page": 2}, auth=AUTH)
@patch("twilio.rest.resources.base.make_twilio_request")
def test_get(mock):
resp = create_mock_json("tests/resources/transcriptions_instance.json")
mock.return_value = resp
uri = "%s/Transcriptions/TR123" % (BASE_URI)
transcriptions.get("TR123")
mock.assert_called_with("GET", uri, auth=AUTH)
@raises(AttributeError)
def test_create():
transcriptions.create
@raises(AttributeError)
def test_update():
transcriptions.update