You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
embed-nu/tests/test_eval.rs

23 lines
525 B
Rust

use embed_nu::{
context::{CommandGroupConfig, Context},
NewEmpty,
};
use nu_protocol::PipelineData;
#[test]
fn it_evals_strings() {
let mut ctx = get_context();
let pipeline = ctx
.eval_raw(r#"echo "Hello World""#, PipelineData::empty())
.unwrap();
ctx.print_pipeline(pipeline).unwrap()
}
fn get_context() -> Context {
Context::builder()
.with_command_groups(CommandGroupConfig::default().all_groups(true))
.add_parent_env_vars()
.build()
.unwrap()
}