2020-03-15 04:04:44 +01:00
|
|
|
use nu_test_support::{nu, pipeline};
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn out_html_simple() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: ".", pipeline(
|
|
|
|
r#"
|
2020-05-04 10:44:33 +02:00
|
|
|
echo 3 | to html
|
2020-03-15 04:04:44 +01:00
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
2020-05-07 13:03:43 +02:00
|
|
|
assert_eq!(actual.out, "<html><body>3</body></html>");
|
2020-03-15 04:04:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn out_html_table() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: ".", pipeline(
|
|
|
|
r#"
|
2020-05-04 10:44:33 +02:00
|
|
|
echo '{"name": "jason"}' | from json | to html
|
2020-03-15 04:04:44 +01:00
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
|
|
|
assert_eq!(
|
2020-05-07 13:03:43 +02:00
|
|
|
actual.out,
|
2020-03-15 04:04:44 +01:00
|
|
|
"<html><body><table><tr><th>name</th></tr><tr><td>jason</td></tr></table></body></html>"
|
|
|
|
);
|
|
|
|
}
|