Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F977774
QueuesTest.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
945 B
Referenced Files
None
Subscribers
None
QueuesTest.php
View Options
<?php
use
\Mockery
as
m
;
class
QueuesTest
extends
PHPUnit_Framework_TestCase
{
protected
$formHeaders
=
array
(
'Content-Type'
=>
'application/x-www-form-urlencoded'
);
function
testCreate
()
{
$http
=
m
::
mock
(
new
Services_Twilio_TinyHttp
);
$http
->
shouldReceive
(
'post'
)->
once
()
->
with
(
'/2010-04-01/Accounts/AC123/Queues.json'
,
$this
->
formHeaders
,
'FriendlyName=foo&MaxSize=123'
)
->
andReturn
(
array
(
200
,
array
(
'Content-Type'
=>
'application/json'
),
json_encode
(
array
(
'sid'
=>
'QQ123'
,
'average_wait_time'
=>
0
))
));
$client
=
new
Services_Twilio
(
'AC123'
,
'123'
,
'2010-04-01'
,
$http
);
$queue
=
$client
->
account
->
queues
->
create
(
'foo'
,
array
(
'MaxSize'
=>
123
));
$this
->
assertSame
(
$queue
->
sid
,
'QQ123'
);
$this
->
assertSame
(
$queue
->
average_wait_time
,
0
);
}
function
tearDown
()
{
m
::
close
();
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Wed, Jun 18, 10:41 AM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
230151
Default Alt Text
QueuesTest.php (945 B)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment