Failing test for empty table on last line
This commit is contained in:
parent
00a3452fa9
commit
6450da87ba
|
@ -1205,6 +1205,14 @@ trimmed in raw strings.
|
|||
table.lookup("foo.1.bar").unwrap().as_table().unwrap();
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn empty_table() {
|
||||
let mut p = Parser::new(r#"
|
||||
[foo]"#);
|
||||
let table = Table(p.parse().unwrap());
|
||||
table.lookup("foo").unwrap().as_table().unwrap();
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn fruit() {
|
||||
let mut p = Parser::new(r#"
|
||||
|
|
Loading…
Reference in a new issue