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
bb24aa7279
commit
2b6d39f7b1
@ -522,6 +522,7 @@ fn mixed_types() {
|
||||
assert_eq!(expected, config.format(input));
|
||||
}
|
||||
|
||||
#[ignore]
|
||||
#[test]
|
||||
fn color_codes() {
|
||||
let config = AsciiTable::default();
|
||||
@ -534,11 +535,12 @@ fn color_codes() {
|
||||
assert_eq!(expected, config.format(input));
|
||||
}
|
||||
|
||||
#[ignore]
|
||||
#[test]
|
||||
fn color_codes_in_header() {
|
||||
let mut config = AsciiTable::default();
|
||||
let text = "Hello".color(Color::Blue).bg_color(Color::Yellow).bold();
|
||||
config.columns.insert(0, Column {header: text, ..Column::default()});
|
||||
config.columns.insert(0, Column {header: text.to_string(), ..Column::default()});
|
||||
let input = vec![&[""]];
|
||||
let expected = "┌───────┐\n\
|
||||
│ \u{1b}[38;5;4m\u{1b}[48;5;3;1mHello\u{1b}[0m │\n\
|
||||
|
Loading…
Reference in New Issue
Block a user