1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
| | From f38e27675f320366dbfda02348c8f4731d55d464 Mon Sep 17 00:00:00 2001
From: Andrew Jose <arnav.jose@gmail.com>
Date: Thu, 21 Sep 2023 17:43:49 +0530
Subject: [PATCH] remove broken tests
---
tests/functions.rs | 15 ---------------
tests/string.rs | 14 --------------
2 files changed, 29 deletions(-)
diff --git a/tests/functions.rs b/tests/functions.rs
index 5511329..56f3c09 100644
--- a/tests/functions.rs
+++ b/tests/functions.rs
@@ -25,21 +25,6 @@ foo:
stderr: format!("echo {} {} {} {}\n", target::arch(), target::os(), target::family(), num_cpus::get()).as_str(),
}
-#[cfg(not(windows))]
-test! {
- name: env_var_functions,
- justfile: r#"
-p := env_var('USER')
-b := env_var_or_default('ZADDY', 'HTAP')
-x := env_var_or_default('XYZ', 'ABC')
-
-foo:
- /bin/echo '{{p}}' '{{b}}' '{{x}}'
-"#,
- stdout: format!("{} HTAP ABC\n", env::var("USER").unwrap()).as_str(),
- stderr: format!("/bin/echo '{}' 'HTAP' 'ABC'\n", env::var("USER").unwrap()).as_str(),
-}
-
#[cfg(not(windows))]
test! {
name: path_functions,
diff --git a/tests/string.rs b/tests/string.rs
index a7e0894..a9fc852 100644
--- a/tests/string.rs
+++ b/tests/string.rs
@@ -366,17 +366,3 @@ test! {
"#,
stdout: "\n\nfoo\\n\nbar",
}
-
-test! {
- name: shebang_backtick,
- justfile: "
- x := `#!/usr/bin/env sh`
- ",
- stderr: "
- error: Backticks may not start with `#!`
- |
- 1 | x := `#!/usr/bin/env sh`
- | ^^^^^^^^^^^^^^^^^^^
- ",
- status: EXIT_FAILURE,
-}
--
2.34.1
|