1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-13 02:12:41 +01:00
phorge-phorge/externals/twilio-php/tests/resources/AccountsTest.php
2014-05-17 15:41:12 -07:00

29 lines
853 B
PHP

<?php
use \Mockery as m;
class AccountsTest extends PHPUnit_Framework_TestCase
{
protected $formHeaders = array('Content-Type' => 'application/x-www-form-urlencoded');
function testPost()
{
$http = m::mock(new Services_Twilio_TinyHttp);
$http->shouldReceive('post')->once()
->with('/2010-04-01/Accounts.json',
$this->formHeaders, 'FriendlyName=foo')
->andReturn(array(200, array('Content-Type' => 'application/json'),
json_encode(array('sid' => 'AC345'))
));
$client = new Services_Twilio('AC123', '123', '2010-04-01', $http);
$account = $client->accounts->create(array(
'FriendlyName' => 'foo',
));
$this->assertEquals('AC345', $account->sid);
}
function tearDown()
{
m::close();
}
}