~peter-pearse/ubuntu/natty/guile-1.8/prop001

« back to all changes in this revision

Viewing changes to test-suite/tests/import.test

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Schepler
  • Date: 2006-11-09 03:11:16 UTC
  • Revision ID: james.westby@ubuntu.com-20061109031116-hu0q1jxqg12y6yeg
Tags: upstream-1.8.1+1
ImportĀ upstreamĀ versionĀ 1.8.1+1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
;;;; import.test --- test selective and renaming imports    -*- scheme -*-
 
2
;;;; Copyright (C) 2000, 2001, 2006 Free Software Foundation, Inc.
 
3
;;;;
 
4
;;;; This library is free software; you can redistribute it and/or
 
5
;;;; modify it under the terms of the GNU Lesser General Public
 
6
;;;; License as published by the Free Software Foundation; either
 
7
;;;; version 2.1 of the License, or (at your option) any later version.
 
8
;;;; 
 
9
;;;; This library is distributed in the hope that it will be useful,
 
10
;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
12
;;;; Lesser General Public License for more details.
 
13
;;;; 
 
14
;;;; You should have received a copy of the GNU Lesser General Public
 
15
;;;; License along with this library; if not, write to the Free Software
 
16
;;;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
17
 
 
18
(define-module (exporter)
 
19
  :export (foo bar))
 
20
 
 
21
(define foo 1)
 
22
(define bar 2)
 
23
 
 
24
(define-module (importer)
 
25
  :use-module (test-suite lib))
 
26
 
 
27
(use-modules ((exporter)
 
28
              :select (foo (bar . baz))))
 
29
 
 
30
(pass-if-exception "selective non-import" (cons 'unbound-variable
 
31
                                                "^Unbound variable")
 
32
  (= bar 2))
 
33
 
 
34
(pass-if "selective import"
 
35
  (= foo 1))
 
36
 
 
37
(pass-if "renaming import"
 
38
  (= baz 2))
 
39
 
 
40
(use-modules ((exporter) :renamer (symbol-prefix-proc 'external:)))
 
41
 
 
42
(pass-if "symbol-prefic-proc import"
 
43
  (and (= external:foo 1)
 
44
       (= external:bar 2)))
 
45
 
 
46
(use-modules ((exporter) :renamer (lambda (sym)
 
47
                                    (symbol-append sym ':external))))
 
48
 
 
49
(pass-if "renamer import"
 
50
  (and (= foo:external 1)
 
51
       (= bar:external 2)))