mirror of
https://github.com/sharkdp/bat
synced 2024-11-24 04:43:07 +00:00
Add test: custom_mappings_precedence
This commit is contained in:
parent
9474b4cf8b
commit
3865908439
1 changed files with 14 additions and 0 deletions
|
@ -183,4 +183,18 @@ mod tests {
|
|||
Some(MappingTarget::MapTo("My Syntax"))
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn custom_mappings_precedence() {
|
||||
let mut map = SyntaxMapping::new();
|
||||
|
||||
map.insert("/path/to/foo", MappingTarget::MapTo("alpha"))
|
||||
.ok();
|
||||
map.insert("/path/to/foo", MappingTarget::MapTo("bravo"))
|
||||
.ok();
|
||||
assert_eq!(
|
||||
map.get_syntax_for("/path/to/foo"),
|
||||
Some(MappingTarget::MapTo("alpha"))
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue