usestd::io;/// Tests that all devices on the local system can be enumerated, and that `EventReader`
/// successfully synchronizes.
#[test]fnenumerate_local_devices()->io::Result<()>{for res inevdevil::enumerate()?{let(_, evdev)= res?;letmut reader = evdev.into_reader()?;
reader.update()?;}Ok(())}