oysh/crates/oyster_builtin_proc/tests/it/main.rs
Charlotte Meyer 4e1a835ddc feat: add command substitutions with ()
This requires PreparedCommand's to work with OsStrings rather than
Strings.

Acked-by: cpli
Acked-by: ElKowar
2022-10-28 08:12:25 +00:00

10 lines
219 B
Rust

use std::{borrow::Cow, ffi::OsStr};
use oyster_builtin_proc::builtin;
use oyster_runtime::Shell;
#[test]
fn normal_usage() {
#[builtin(description = "some text")]
fn test(_: &mut Shell, _: &[Cow<OsStr>]) {}
}