We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 107dc44 commit ec7e81eCopy full SHA for ec7e81e
1 file changed
tests/test_util_name.rs
@@ -235,3 +235,17 @@ fn test_musl_no_dynamic_deps() {
235
stdout
236
);
237
}
238
+
239
+#[test]
240
+fn test_sorted_utils() {
241
+ let s = TestScenario::new("list_sorted");
242
+ let out = String::from_utf8(
243
+ std::process::Command::new(&s.bin_path)
244
+ .arg("--list")
245
+ .output()
246
+ .unwrap()
247
+ .stdout,
248
+ )
249
+ .unwrap();
250
+ assert!(out.lines().filter(|s| !s.is_empty()).is_sorted());
251
+}
0 commit comments