public function testAllMessagesForConversation()
 {
     $conversation_slug = 'hello';
     $this->mockRequest('GET', Conversation::url() . "/" . $conversation_slug . '/messages', array("filter" => "staff"));
     Message::all(array("conversation_slug" => "hello", "filter" => "staff"));
 }
 public function testGetPath()
 {
     $this->assertEquals('/v1/conversations', Conversation::path());
 }