mirror of
https://gitlab.com/arnekeller/ascii-table.git
synced 2024-12-04 13:39:06 +00:00
save game
This commit is contained in:
parent
78e6eb043a
commit
c2355fd684
31
src/test.rs
31
src/test.rs
@ -642,3 +642,34 @@ fn color_codes_in_header() {
|
||||
|
||||
assert_eq!(expected, config.format(input));
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn color_codes_pad_right() {
|
||||
let config = AsciiTable::default();
|
||||
let input = vec![
|
||||
vec!["Hello".color(Color::Blue).bg_color(Color::Yellow).bold()],
|
||||
vec!["H".color(Color::Blue).bg_color(Color::Yellow).bold()]
|
||||
];
|
||||
let expected = "┌───────┐\n\
|
||||
│ \u{1b}[38;5;4m\u{1b}[48;5;3;1mHello\u{1b}[0m │\n\
|
||||
│ \u{1b}[38;5;4m\u{1b}[48;5;3;1mH \u{1b}[0m │\n\
|
||||
└───────┘\n";
|
||||
|
||||
assert_eq!(expected, config.format(input));
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn color_codes_pad_left() {
|
||||
let mut config = AsciiTable::default();
|
||||
config.columns.insert(0, Column {header: String::new(), align: Right, ..Column::default()});
|
||||
let input = vec![
|
||||
vec!["Hello".color(Color::Blue).bg_color(Color::Yellow).bold()],
|
||||
vec!["H".color(Color::Blue).bg_color(Color::Yellow).bold()]
|
||||
];
|
||||
let expected = "┌───────┐\n\
|
||||
│ \u{1b}[38;5;4m\u{1b}[48;5;3;1mHello\u{1b}[0m │\n\
|
||||
│ \u{1b}[38;5;4m\u{1b}[48;5;3;1m H\u{1b}[0m │\n\
|
||||
└───────┘\n";
|
||||
|
||||
assert_eq!(expected, config.format(input));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user