Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 9 |
Ratio | 100 % |
Changes | 0 |
1 | <?php |
||
34 | View Code Duplication | public function testItemWithDefaultResourceKey() |
|
35 | { |
||
36 | $serializer = new Serializer(); |
||
37 | $result = $serializer->item(null, ['foo']); |
||
38 | |||
39 | $this->assertSame([ |
||
40 | 'data' => ['foo'] |
||
41 | ], $result); |
||
42 | } |
||
43 | |||
54 |