| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 8 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php | ||
| 20 | public function testAsCallable() | ||
| 21 |     { | ||
| 22 | $secretKey = 'nSlpOGNt10hB_FU1-RGfs3tvh0o='; | ||
| 23 | $sign = new GmapsUrlSigner($secretKey); | ||
| 24 | $url = 'https://maps.googleapis.com/maps/api/js?key=foo_bar'; | ||
| 25 | $expected = 'https://maps.googleapis.com/maps/api/js?key=foo_bar&signature=Sc3meb0HXImPjMMUiICRtekp3mk='; | ||
| 26 | $this->assertEquals($expected, $sign($url)); | ||
| 27 | } | ||
| 28 | } | ||
| 29 |