11 lines
203 B
Rust
11 lines
203 B
Rust
|
use std::borrow::Cow;
|
||
|
|
||
|
use oyster_builtin_proc::builtin;
|
||
|
use oyster_runtime::Shell;
|
||
|
|
||
|
#[test]
|
||
|
fn normal_usage() {
|
||
|
#[builtin(description = "some text")]
|
||
|
fn test(_: &mut Shell, _: &[Cow<str>]) {}
|
||
|
}
|