mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
12 lines
280 B
PHP
12 lines
280 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());
|
|
$this->assertEquals('DE', Geoip::get_default_country_code());
|
|
}
|
|
} |