Add unit test to make sure we are not missing any themes

pull/1031/head
sharkdp 4 years ago committed by David Peter
parent fe20328ab7
commit 2ab6474761

BIN
assets/themes.bin vendored

Binary file not shown.

@ -0,0 +1,35 @@
use bat::assets::HighlightingAssets;
/// This test ensures that we are not accidentally removing themes due to submodule updates.
#[test]
fn all_themes_are_present() {
let assets = HighlightingAssets::from_binary();
let mut themes: Vec<_> = assets.themes().collect();
themes.sort();
assert_eq!(
themes,
vec![
"1337",
"DarkNeon",
"Dracula",
"GitHub",
"Monokai Extended",
"Monokai Extended Bright",
"Monokai Extended Light",
"Monokai Extended Origin",
"Nord",
"OneHalfDark",
"OneHalfLight",
"Solarized (dark)",
"Solarized (light)",
"Sublime Snazzy",
"TwoDark",
"ansi-dark",
"ansi-light",
"base16",
"zenburn"
]
);
}
Loading…
Cancel
Save