add test checking for #578

This commit is contained in:
dvdsk 2024-05-23 13:10:37 +02:00
parent 11221a8609
commit 7473837814
No known key found for this signature in database
GPG key ID: 6CF9D20C5709A836

View file

@ -15,4 +15,8 @@ fn main() {
sink.try_seek(Duration::from_secs(4)).unwrap();
sink.sleep_until_end();
// wont do anything since the sound has ended already
sink.try_seek(Duration::from_secs(5)).unwrap();
println!("seek example ended");
}