We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0dd8723 commit 6ebcf1fCopy full SHA for 6ebcf1f
test/babashka/bbin/scripts_test.clj
@@ -32,9 +32,11 @@
32
home-gitlibs (str (fs/path (fs/home) ".gitlibs") "/" expected-suffix)
33
custom-gitlibs (str "/custom/gitlibs/" expected-suffix)]
34
(testing "uses ~/.gitlibs when GITLIBS is empty"
35
- (is (= (str (common/local-lib-path script-deps "")))))
+ (is (= home-gitlibs
36
+ (str (common/local-lib-path script-deps "")))))
37
(testing "uses custom path when GITLIBS is set"
- (is (= (str (common/local-lib-path script-deps "/custom/gitlibs")))))))
38
+ (is (= custom-gitlibs
39
+ (str (common/local-lib-path script-deps "/custom/gitlibs")))))))
40
41
(deftest uninstall-test
42
(testing "uninstall foo"
0 commit comments