mirror of
https://github.com/MarginaliaSearch/MarginaliaSearch.git
synced 2025-02-24 21:29:00 +00:00
16 lines
373 B
Java
16 lines
373 B
Java
![]() |
package nu.marginalia.geoip;
|
||
|
|
||
|
import org.junit.jupiter.api.Tag;
|
||
|
import org.junit.jupiter.api.Test;
|
||
|
|
||
|
@Tag("slow")
|
||
|
class GeoIpDictionaryTest {
|
||
|
|
||
|
@Test
|
||
|
public void testAsnResolution() {
|
||
|
GeoIpDictionary geoIpDictionary = new GeoIpDictionary();
|
||
|
geoIpDictionary.waitReady();
|
||
|
System.out.println(geoIpDictionary.getAsnInfo("193.183.0.162"));
|
||
|
}
|
||
|
|
||
|
}
|