Finish adding support for optional params (#530)

This commit is contained in:
JT
2021-12-20 17:58:09 +11:00
committed by GitHub
parent e949658381
commit caf73c36f2
2 changed files with 22 additions and 8 deletions

View File

@ -1300,3 +1300,11 @@ fn get_table_columns_1() -> TestResult {
fn get_table_columns_2() -> TestResult {
run_test("[[name, age, grade]; [paul,21,a]] | columns | nth 1", "age")
}
#[test]
fn allow_missing_optional_params() -> TestResult {
run_test(
"def foo [x?:int] { if $x != $nothing { $x + 10 } else { 5 } }; foo",
"5",
)
}