From 2c66376a50d767e6e2e0bc5233707a39f124607b Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Wed, 15 Jul 2026 20:30:48 +0800 Subject: test: add integration test crate for mingling_picker --- mingling_picker/test/src/test.rs | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 mingling_picker/test/src/test.rs (limited to 'mingling_picker/test/src/test.rs') diff --git a/mingling_picker/test/src/test.rs b/mingling_picker/test/src/test.rs new file mode 100644 index 0000000..20b07ab --- /dev/null +++ b/mingling_picker/test/src/test.rs @@ -0,0 +1,11 @@ +use mingling_picker::{IntoPicker, macros::flag}; + +#[test] +fn test_picker_pipeline() { + let args = vec!["--flag"]; + let parsed = args + .with_route::() + .pick(&flag![flag: bool]) + .unwrap(); + assert_eq!(parsed, true); +} -- cgit