We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 862b7d2 commit 2bf6e0aCopy full SHA for 2bf6e0a
tests/unit/test_message_thread.py
@@ -66,6 +66,10 @@ def test_find(self):
66
self.assertEqual(1331767859,
67
time.mktime(messages[1].created_at.timetuple()))
68
69
+ @raises(ValueError)
70
+ def test_find_no_thread_id(self):
71
+ message_thread = MessageThread.find(email="xxx@example.com")
72
+
73
@patch('requests.request', create_response(200,
74
'get_message_thread_valid.json'))
75
def test_create(self):
0 commit comments