import.test 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. (define-module (exporter)
  18. :export (foo bar))
  19. (define foo 1)
  20. (define bar 2)
  21. (define-module (importer)
  22. :use-module (test-suite lib))
  23. (use-modules ((exporter)
  24. :select (foo (bar . baz))))
  25. (pass-if-exception "selective non-import" (cons 'unbound-variable
  26. "^Unbound variable")
  27. (= bar 2))
  28. (pass-if "selective import"
  29. (= foo 1))
  30. (pass-if "renaming import"
  31. (= baz 2))
  32. (use-modules ((exporter) :renamer (symbol-prefix-proc 'external:)))
  33. (pass-if "symbol-prefic-proc import"
  34. (and (= external:foo 1)
  35. (= external:bar 2)))
  36. (use-modules ((exporter) :renamer (lambda (sym)
  37. (symbol-append sym ':external))))
  38. (pass-if "renamer import"
  39. (and (= foo:external 1)
  40. (= bar:external 2)))