| 12345678910111213141516171819202122232425262728 |
- use ansi_term::Style;
- use crate::fs::fields as f;
- use crate::output::cell::TextCell;
- impl f::Inode {
- pub fn render(self, style: Style) -> TextCell {
- TextCell::paint(style, self.0.to_string())
- }
- }
- #[cfg(test)]
- pub mod test {
- use crate::output::cell::TextCell;
- use crate::fs::fields as f;
- use ansi_term::Colour::*;
- #[test]
- fn blocklessness() {
- let io = f::Inode(1_414_213);
- let expected = TextCell::paint_str(Cyan.underline(), "1414213");
- assert_eq!(expected, io.render(Cyan.underline()));
- }
- }
|