tests: Avoid unnecessary use of 'mock'.
authorLudovic Courtès <ludo@gnu.org>
Sun, 24 Nov 2019 19:48:11 +0000 (20:48 +0100)
committerLudovic Courtès <ludo@gnu.org>
Mon, 25 Nov 2019 23:16:35 +0000 (00:16 +0100)
* tests/build-utils.scm ("wrap-script, simple case"): Use the real
'which' instead of mocking it.

tests/build-utils.scm

index ec442c2..47a57a9 100644 (file)
@@ -151,11 +151,12 @@ echo hello world"))
   (test-equal "wrap-script, simple case"
     (string-append
      (format #f "\
-#!GUILE --no-auto-compile
+#!~a --no-auto-compile
 #!#; Guix wrapper
 #\\-~s
 #\\-~s
 "
+             (which "guile")
              '(begin (let ((current (getenv "GUIX_FOO")))
                        (setenv "GUIX_FOO"
                                (if current
@@ -175,11 +176,9 @@ echo hello world"))
            (lambda (port)
              (format port script-contents)))
          (chmod script-file-name #o777)
-
-         (mock ((guix build utils) which (const "GUILE"))
-               (wrap-script script-file-name
-                            `("GUIX_FOO" prefix ("/some/path"
-                                                 "/some/other/path"))))
+         (wrap-script script-file-name
+                      `("GUIX_FOO" prefix ("/some/path"
+                                           "/some/other/path")))
          (let ((str (call-with-input-file script-file-name get-string-all)))
            (with-directory-excursion directory
              (delete-file "foo"))