Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
29 | public function testUseCannotGeocodeWithoutGeocodePermission() { |
||
30 | $this->revokeGeocodePermission(); |
||
31 | |||
32 | $this->expectException( \ApiUsageException::class ); |
||
33 | $this->expectExceptionMessage( 'is limited to users' ); |
||
34 | |||
35 | $this->doApiRequest( [ |
||
36 | 'action' => 'geocode', |
||
37 | 'locations' => '' |
||
38 | ] ); |
||
39 | } |
||
40 | |||
52 |