// Take a look at the license at the top of the repository in the LICENSE file.
// This test is used to ensure that the networks are not loaded by default.
#[test]fntest_networks(){usesysinfo::Networks;ifsysinfo::IS_SUPPORTED_SYSTEM{letmut n =Networks::new();assert_eq!(n.iter().count(),0);
n.refresh();assert_eq!(n.iter().count(),0);
n.refresh_list();assert!(n.iter().count()>0);}}