You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
class EmbedTest extends PHPUnit_Framework_TestCase {
5
+
privatefunctioncheckUrl ($url, array$values) {
6
+
$info = Embed\Embed::create(newEmbed\Url($url));
7
+
8
+
foreach ($valuesas$name => $value) {
9
+
$this->assertEquals($value, $info->$name);
10
+
}
11
+
12
+
return$info;
13
+
}
14
+
15
+
publicfunctiontestUrls () {
16
+
$this->checkUrl(
17
+
'http://www.youtube.com/watch?v=eiHXASgRTcA',
18
+
array(
19
+
'title' => 'Noisy kittens waiting for dinner!',
20
+
'description' => 'Disclaimer - 7 week old fostered kittens waiting on their dinner being prepared. They had been ill with cat flu and were just starting to get their appetite ...',
'title' => 'Echoes of George W. Bush blues in Barack Obama\'s 2nd term',
40
+
'description' => 'As Barack Obama heads into his sixth year in the White House, his aides says they are all too familiar with the notion that his predicament looks similar to George W. Bush’s eight years ago. They’re two presidents dogged by crises largely of their own making, whose welcome with Americans has worn thin after two marathon elections. One president...',
0 commit comments