mirror of
https://github.com/nushell/nushell.git
synced 2024-11-29 20:03:54 +01:00
96e5fc05a3
Pick->Select rename. Integration tests changes.
29 lines
555 B
Rust
29 lines
555 B
Rust
use nu_test_support::{nu, pipeline};
|
|
|
|
#[test]
|
|
fn out_html_simple() {
|
|
let actual = nu!(
|
|
cwd: ".", pipeline(
|
|
r#"
|
|
echo 3 | to html
|
|
"#
|
|
));
|
|
|
|
assert_eq!(actual.out, "<html><body>3</body></html>");
|
|
}
|
|
|
|
#[test]
|
|
fn out_html_table() {
|
|
let actual = nu!(
|
|
cwd: ".", pipeline(
|
|
r#"
|
|
echo '{"name": "jason"}' | from json | to html
|
|
"#
|
|
));
|
|
|
|
assert_eq!(
|
|
actual.out,
|
|
"<html><body><table><tr><th>name</th></tr><tr><td>jason</td></tr></table></body></html>"
|
|
);
|
|
}
|