Skip to content

Commit

Permalink
Tests: Remove stray todo!()s in resolver test
Browse files Browse the repository at this point in the history
  • Loading branch information
Serial-ATA committed Jul 10, 2023
1 parent 7b52455 commit 17b9242
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/taglib/test_fileref.rs
Original file line number Diff line number Diff line change
Expand Up @@ -243,19 +243,19 @@ fn test_file_resolver() {
}

fn save_to(&self, _: &mut File) -> lofty::Result<()> {
todo!()
unimplemented!()
}

fn properties(&self) -> &Self::Properties {
todo!()
unimplemented!()
}

fn contains_tag(&self) -> bool {
todo!()
unimplemented!()
}

fn contains_tag_type(&self, _: TagType) -> bool {
todo!()
unimplemented!()
}
}

Expand All @@ -265,11 +265,11 @@ fn test_file_resolver() {
}

fn primary_tag_type() -> TagType {
todo!()
unimplemented!()
}

fn supported_tag_types() -> &'static [TagType] {
todo!()
unimplemented!()
}

fn guess(_: &[u8]) -> Option<FileType> {
Expand Down

0 comments on commit 17b9242

Please sign in to comment.