nushell/crates/nu-cli/tests/format_conversions/markdown.rs

26 lines
429 B
Rust
Raw Normal View History

2020-03-19 20:18:24 +01:00
use nu_test_support::{nu, pipeline};
#[test]
fn out_md_simple() {
let actual = nu!(
cwd: ".", pipeline(
r#"
echo 3 | to md
2020-03-19 20:18:24 +01:00
"#
));
assert_eq!(actual.out, "3");
2020-03-19 20:18:24 +01:00
}
#[test]
fn out_md_table() {
let actual = nu!(
cwd: ".", pipeline(
r#"
echo '{"name": "jason"}' | from json | to md
2020-03-19 20:18:24 +01:00
"#
));
assert_eq!(actual.out, "|name||-||jason|");
2020-03-19 20:18:24 +01:00
}