nushell/tests/tests.rs

22 lines
494 B
Rust
Raw Normal View History

mod helpers;
2019-06-02 03:37:09 +00:00
use helpers::in_directory as cwd;
2019-06-02 03:37:09 +00:00
#[test]
fn external_num() {
nu!(output,
cwd("tests/fixtures/formats"),
"open sgml_description.json | get glossary.GlossDiv.GlossList.GlossEntry.Height | echo $it");
assert_eq!(output, "10");
}
2019-06-24 07:59:23 +00:00
#[test]
fn inc_plugin() {
nu!(output,
cwd("tests/fixtures/formats"),
"open sgml_description.json | get glossary.GlossDiv.GlossList.GlossEntry.Height | inc | echo $it");
2019-07-04 03:18:19 +00:00
assert_eq!(output, "11");
2019-06-03 01:26:29 +00:00
}