summaryrefslogtreecommitdiffstats
path: root/vendor/clap-3.2.20/src/builder/tests.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-30 03:57:31 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-30 03:57:31 +0000
commitdc0db358abe19481e475e10c32149b53370f1a1c (patch)
treeab8ce99c4b255ce46f99ef402c27916055b899ee /vendor/clap-3.2.20/src/builder/tests.rs
parentReleasing progress-linux version 1.71.1+dfsg1-2~progress7.99u1. (diff)
downloadrustc-dc0db358abe19481e475e10c32149b53370f1a1c.tar.xz
rustc-dc0db358abe19481e475e10c32149b53370f1a1c.zip
Merging upstream version 1.72.1+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'vendor/clap-3.2.20/src/builder/tests.rs')
-rw-r--r--vendor/clap-3.2.20/src/builder/tests.rs56
1 files changed, 0 insertions, 56 deletions
diff --git a/vendor/clap-3.2.20/src/builder/tests.rs b/vendor/clap-3.2.20/src/builder/tests.rs
deleted file mode 100644
index 76c8b8785..000000000
--- a/vendor/clap-3.2.20/src/builder/tests.rs
+++ /dev/null
@@ -1,56 +0,0 @@
-use crate::Arg;
-use crate::Command;
-
-#[test]
-fn propagate_version() {
- let mut cmd = Command::new("test")
- .propagate_version(true)
- .version("1.1")
- .subcommand(Command::new("sub1"));
- cmd._propagate();
- assert_eq!(
- cmd.get_subcommands().next().unwrap().get_version(),
- Some("1.1")
- );
-}
-
-#[test]
-fn global_setting() {
- let mut cmd = Command::new("test")
- .disable_version_flag(true)
- .subcommand(Command::new("subcmd"));
- cmd._propagate();
- assert!(cmd
- .get_subcommands()
- .find(|s| s.get_name() == "subcmd")
- .unwrap()
- .is_disable_version_flag_set());
-}
-
-// This test will *fail to compile* if Command is not Send + Sync
-#[test]
-fn app_send_sync() {
- fn foo<T: Send + Sync>(_: T) {}
- foo(Command::new("test"))
-}
-
-#[test]
-fn issue_2090() {
- let mut cmd = Command::new("cmd")
- .disable_version_flag(true)
- .subcommand(Command::new("sub"));
- cmd._build_self();
-
- assert!(cmd
- .get_subcommands()
- .next()
- .unwrap()
- .is_disable_version_flag_set());
-}
-
-// This test will *fail to compile* if Arg is not Send + Sync
-#[test]
-fn arg_send_sync() {
- fn foo<T: Send + Sync>(_: T) {}
- foo(Arg::new("test"))
-}