mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 12:05:37 +00:00
11 lines
216 B
PHP
11 lines
216 B
PHP
|
<?php
|
||
|
|
||
|
class GeoipTest extends SapphireTest {
|
||
|
|
||
|
function testSetDefaultCountry() {
|
||
|
Geoip::set_default_country_code('DE');
|
||
|
Geoip::set_enabled(false);
|
||
|
|
||
|
$this->assertEquals('DE', Geoip::visitor_country());
|
||
|
}
|
||
|
}
|