Remove test

This test is not applicable anymore because it tests (and tested) the
wrong thing.

It was to check whether the function failed because the "imag" key
contained the wrong type, but this is not tested by that function. The
function only checks whether the "imag" key is present.
This commit is contained in:
Matthias Beyer 2017-12-22 12:02:07 +01:00
parent 35410aaa2e
commit 9128d04866
1 changed files with 0 additions and 8 deletions

View File

@ -1148,14 +1148,6 @@ mod test {
assert!(has_main_section(&Value::Table(map)).unwrap());
}
#[test]
fn test_imag_invalid_section_type() {
let mut map = BTreeMap::new();
map.insert("imag".into(), Value::Boolean(false));
assert!(!has_main_section(&map));
}
#[test]
fn test_imag_abscent_main_section() {
let mut map = BTreeMap::new();