Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2363325
AccountsTest.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
853 B
Referenced Files
None
Subscribers
None
AccountsTest.php
View Options
<?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
();
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, Sep 16, 4:57 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
436843
Default Alt Text
AccountsTest.php (853 B)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment