Skip to content

Commit

Permalink
Implement Debug for DirEntry.
Browse files Browse the repository at this point in the history
  • Loading branch information
frewsxcv committed Sep 22, 2016
1 parent c772948 commit 6b697a3
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/libstd/fs.rs
Expand Up @@ -1055,6 +1055,15 @@ impl DirEntry {
}
}

#[stable(feature = "dir_entry_debug", since = "1.13.0")]
impl fmt::Debug for DirEntry {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.debug_tuple("DirEntry")
.field(&self.path())
.finish()
}
}

impl AsInner<fs_imp::DirEntry> for DirEntry {
fn as_inner(&self) -> &fs_imp::DirEntry { &self.0 }
}
Expand Down Expand Up @@ -2641,6 +2650,17 @@ mod tests {
}
}

#[test]
fn dir_entry_debug() {
let tmpdir = tmpdir();
File::create(&tmpdir.join("b")).unwrap();
let mut read_dir = tmpdir.path().read_dir().unwrap();
let dir_entry = read_dir.next().unwrap().unwrap();
let actual = format!("{:?}", dir_entry);
let expected = format!("DirEntry({:?})", dir_entry.0.path());
assert_eq!(actual, expected);
}

#[test]
fn read_dir_not_found() {
let res = fs::read_dir("/path/that/does/not/exist");
Expand Down

0 comments on commit 6b697a3

Please sign in to comment.