Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 9 |
Ratio | 100 % |
Changes | 0 |
1 | <?php |
||
44 | View Code Duplication | public function testITemWithCustomResourceKey() |
|
45 | { |
||
46 | $serializer = new Serializer(); |
||
47 | $result = $serializer->collection('custom', ['foo']); |
||
48 | |||
49 | $this->assertSame([ |
||
50 | 'custom' => ['foo'] |
||
51 | ], $result); |
||
52 | } |
||
53 | } |
||
54 |