tests: Avoid unnecessary use of 'mock'.

* tests/build-utils.scm ("wrap-script, simple case"): Use the real
'which' instead of mocking it.
This commit is contained in:
Ludovic Courtès 2019-11-24 20:48:11 +01:00
parent 1d64afbdc0
commit f5698dfb87
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 5 additions and 6 deletions

View 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"))