2022-10-24 19:27:04 +00:00
|
|
|
use std::{borrow::Cow, ffi::OsStr};
|
2022-10-21 17:29:42 +00:00
|
|
|
|
|
|
|
use oyster_builtin_proc::builtin;
|
|
|
|
use oyster_runtime::Shell;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn normal_usage() {
|
|
|
|
#[builtin(description = "some text")]
|
2022-10-24 19:27:04 +00:00
|
|
|
fn test(_: &mut Shell, _: &[Cow<OsStr>]) {}
|
2022-10-21 17:29:42 +00:00
|
|
|
}
|