//! Hits the real free-tier endpoint. Excluded from the default `cargo test`
//! run; execute explicitly with `cargo test -- --ignored`.
useipdatainfo::Client;#[test]#[ignore]fnlive_lookup_returns_real_data(){let client =Client::new();let info = client.lookup("8.8.8.8").expect("live lookup should succeed");assert!(info.success);assert_eq!(info.ip,"8.8.8.8");}