diff options
author | Ludovic Courtès <ludo@gnu.org> | 2010-01-06 23:55:13 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2010-01-07 11:10:36 +0100 |
commit | 8ffcf6e725f97a4f3480ef6583743d7786e42997 (patch) | |
tree | 095818454fc21e9d6db2dd34e993d009aa156e59 | |
parent | e29dcaf3b7dde40b960455587142e7a79c53bfab (diff) | |
download | guile-8ffcf6e725f97a4f3480ef6583743d7786e42997.tar.gz |
Enclose hooks tests in their own module.
* test-suite/tests/hooks.test: Enclose in `(test-suite test-hooks)'
module.
-rw-r--r-- | test-suite/tests/hooks.test | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test-suite/tests/hooks.test b/test-suite/tests/hooks.test index 0987f8c3c..e6beb491e 100644 --- a/test-suite/tests/hooks.test +++ b/test-suite/tests/hooks.test @@ -1,5 +1,5 @@ ;;;; hooks.test --- tests guile's hooks implementation -*- scheme -*- -;;;; Copyright (C) 1999, 2001, 2006, 2009 Free Software Foundation, Inc. +;;;; Copyright (C) 1999, 2001, 2006, 2009, 2010 Free Software Foundation, Inc. ;;;; ;;;; This library is free software; you can redistribute it and/or ;;;; modify it under the terms of the GNU Lesser General Public @@ -15,6 +15,9 @@ ;;;; License along with this library; if not, write to the Free Software ;;;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +(define-module (test-suite test-hooks) + #:use-module (test-suite lib)) + ;;; ;;; miscellaneous ;;; |