diff options
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/derivations.scm | 10 | 
1 files changed, 9 insertions, 1 deletions
| diff --git a/tests/derivations.scm b/tests/derivations.scm index 4b36758c25..25e6f75657 100644 --- a/tests/derivations.scm +++ b/tests/derivations.scm @@ -1,5 +1,5 @@  ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2012, 2013, 2014 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2012, 2013, 2014, 2015 Ludovic Courtès <ludo@gnu.org>  ;;;  ;;; This file is part of GNU Guix.  ;;; @@ -178,6 +178,14 @@    (let ((drv (derivation %store "foo-0.0" %bash '())))      (derivation-name drv))) +(test-equal "derivation-output-names" +  '(("out") ("bar" "chbouib")) +  (let ((drv1 (derivation %store "foo-0.0" %bash '())) +        (drv2 (derivation %store "foo-0.0" %bash '() +                          #:outputs '("bar" "chbouib")))) +    (list (derivation-output-names drv1) +          (derivation-output-names drv2)))) +  (test-assert "offloadable-derivation?"    (and (offloadable-derivation? (derivation %store "foo" %bash '()))         (not (offloadable-derivation? | 
