mirror of
https://github.com/sharkdp/bat.git
synced 2024-11-01 04:21:01 +01:00
43 lines
1.1 KiB
Rust
43 lines
1.1 KiB
Rust
use bat::assets::HighlightingAssets;
|
|
|
|
/// This test ensures that we are not accidentally removing themes due to submodule updates.
|
|
/// It is 'ignore'd by default because it requires themes.bin to be up-to-date.
|
|
#[test]
|
|
#[ignore]
|
|
fn all_themes_are_present() {
|
|
let assets = HighlightingAssets::from_binary();
|
|
|
|
let mut themes: Vec<_> = assets.themes().collect();
|
|
themes.sort_unstable();
|
|
|
|
assert_eq!(
|
|
themes,
|
|
vec![
|
|
"1337",
|
|
"Coldark-Cold",
|
|
"Coldark-Dark",
|
|
"DarkNeon",
|
|
"Dracula",
|
|
"GitHub",
|
|
"Monokai Extended",
|
|
"Monokai Extended Bright",
|
|
"Monokai Extended Light",
|
|
"Monokai Extended Origin",
|
|
"Nord",
|
|
"OneHalfDark",
|
|
"OneHalfLight",
|
|
"Solarized (dark)",
|
|
"Solarized (light)",
|
|
"Sublime Snazzy",
|
|
"TwoDark",
|
|
"Visual Studio Dark+",
|
|
"ansi",
|
|
"base16",
|
|
"base16-256",
|
|
"gruvbox-dark",
|
|
"gruvbox-light",
|
|
"zenburn"
|
|
]
|
|
);
|
|
}
|