mirror of
https://github.com/nushell/nushell
synced 2025-01-02 16:29:00 +00:00
25 lines
421 B
Rust
25 lines
421 B
Rust
use nu_test_support::{nu, pipeline};
|
|
|
|
#[test]
|
|
fn out_md_simple() {
|
|
let actual = nu!(
|
|
cwd: ".", pipeline(
|
|
r#"
|
|
echo 3 | to md
|
|
"#
|
|
));
|
|
|
|
assert_eq!(actual, "3");
|
|
}
|
|
|
|
#[test]
|
|
fn out_md_table() {
|
|
let actual = nu!(
|
|
cwd: ".", pipeline(
|
|
r#"
|
|
echo '{"name": "jason"}' | from json | to md
|
|
"#
|
|
));
|
|
|
|
assert_eq!(actual, "|name||-||jason|");
|
|
}
|