Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
11 | public function testSign() |
||
12 | { |
||
13 | $secretKey = 'nSlpOGNt10hB_FU1-RGfs3tvh0o='; |
||
14 | $signer = new GmapsUrlSigner($secretKey); |
||
15 | $url = 'https://maps.googleapis.com/maps/api/js?key=foo_bar'; |
||
16 | $expected = 'https://maps.googleapis.com/maps/api/js?key=foo_bar&signature=Sc3meb0HXImPjMMUiICRtekp3mk='; |
||
17 | $this->assertEquals($expected, $signer->sign($url)); |
||
18 | } |
||
19 | |||
29 |