Fix PipelineData::print when table is overridden (#6129)

* Fix PipelineData::print when `table` is overridden

Fixes #6113

Signed-off-by: nibon7 <nibon7@163.com>

* don't use deprecated `is_custom_command`

Signed-off-by: nibon7 <nibon7@163.com>

* add test

Signed-off-by: nibon7 <nibon7@163.com>
This commit is contained in:
nibon7
2022-07-26 07:41:30 +08:00
committed by GitHub
parent e4e27b6e11
commit 72c27bd095
2 changed files with 11 additions and 6 deletions

View File

@ -130,3 +130,8 @@ fn help_not_present_in_extern() -> TestResult {
"Usage:\n > git fetch",
)
}
#[test]
fn override_table() -> TestResult {
run_test(r#"def table [] { "hi" }; table"#, "hi")
}