use super::super::*;
#[test]
fn _0001() {
let scope = scope!();
accept(
&scope,
StartExpression,
"1+2",
r#"
Add
├─ Numeric
│ └─ `1`
└─ Numeric
└─ `2`
"#,
false,
);
}
#[test]
fn _0002() {
let scope = scope!();
accept(
&scope,
StartExpression,
r#"[12.45]"#,
r#"
List
└─ Numeric
└─ `12.45`
"#,
false,
);
}