From 023d9892c0411adb523e6bc8337be3e7e94e606f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Wed, 14 Jan 2015 14:25:58 +0100 Subject: store: Add 'store-lower'. * guix/store.scm (store-lower): New procedure. * tests/store.scm ("store-lower"): New test. --- tests/store.scm | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'tests/store.scm') diff --git a/tests/store.scm b/tests/store.scm index cb5370d5cc..f43fcb14d0 100644 --- a/tests/store.scm +++ b/tests/store.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2012, 2013, 2014 Ludovic Courtès +;;; Copyright © 2012, 2013, 2014, 2015 Ludovic Courtès ;;; ;;; This file is part of GNU Guix. ;;; @@ -595,6 +595,12 @@ Deriver: ~a~%" (null? (valid-derivers %store file)) (null? (referrers %store file)))))) +(test-equal "store-lower" + "Lowered." + (let* ((add (store-lower text-file)) + (file (add %store "foo" "Lowered."))) + (call-with-input-file file get-string-all))) + (test-end "store") -- cgit v1.2.3