aboutsummaryrefslogtreecommitdiff
path: root/mingling_core/src/comp/shell_ctx.rs
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-06-24 06:58:09 +0800
committer魏曹先生 <1992414357@qq.com>2026-06-24 06:58:09 +0800
commitdc13fa58448b7e267fb0ba63427534127f76beca (patch)
tree7219f10bf3da22fdbe2cf4f41719505dcb75d6d2 /mingling_core/src/comp/shell_ctx.rs
parentdd6253ba8c37b51927ab4dc0e71f5b3a264f36b3 (diff)
Move flag tests to separate module and clean up deref patterns
Diffstat (limited to 'mingling_core/src/comp/shell_ctx.rs')
-rw-r--r--mingling_core/src/comp/shell_ctx.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mingling_core/src/comp/shell_ctx.rs b/mingling_core/src/comp/shell_ctx.rs
index 9d84aa7..616eade 100644
--- a/mingling_core/src/comp/shell_ctx.rs
+++ b/mingling_core/src/comp/shell_ctx.rs
@@ -307,7 +307,7 @@ mod tests {
fn test_try_from_flag_without_value() {
let args = vec!["-F".to_string()];
let context = ShellContext::try_from(args).unwrap();
- assert!(matches!(context.shell_flag, ShellFlag::Other(ref s) if s == ""));
+ assert!(matches!(context.shell_flag, ShellFlag::Other(ref s) if s.is_empty()));
}
#[test]