1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-28 16:00:22 +02:00

Use define-module to keep bindings from

subsequent tests, use test-suite lib for stand-alone checking.
This commit is contained in:
Kevin Ryde 2005-01-01 22:46:43 +00:00
parent 2b78075b31
commit 1352a75547

View file

@ -1,6 +1,6 @@
;;;; srfi-39.test --- -*- scheme -*-
;;;;
;;;; Copyright (C) 2004 Free Software Foundation, Inc.
;;;; Copyright (C) 2004, 2005 Free Software Foundation, Inc.
;;;;
;;;; This program is free software; you can redistribute it and/or modify
;;;; it under the terms of the GNU General Public License as published by
@ -17,7 +17,9 @@
;;;; the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
;;;; Boston, MA 02111-1307 USA
(use-modules (srfi srfi-39))
(define-module (test-srfi-39)
#:use-module (test-suite lib)
#:use-module (srfi srfi-39))
(define a (make-parameter 3))
(define b (make-parameter 4))