Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
11 | public function testFetch() |
||
12 | { |
||
13 | $opengraph = new OpenGraph(); |
||
14 | $data = $opengraph->fetch( |
||
15 | 'https://www.unsplash.com/' |
||
16 | ); |
||
17 | $this->assertArrayHasKey('title', $data); |
||
18 | $this->assertArrayHasKey('description', $data); |
||
19 | $this->assertArrayHasKey('type', $data); |
||
20 | $this->assertArrayHasKey('url', $data); |
||
21 | $this->assertArrayHasKey('image', $data); |
||
22 | } |
||
35 |