procprop.test 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. ;;;; procprop.test --- Procedure properties -*- mode: scheme; coding: utf-8; -*-
  2. ;;;; Ludovic Courtès <ludo@gnu.org>
  3. ;;;;
  4. ;;;; Copyright (C) 2009, 2010 Free Software Foundation, Inc.
  5. ;;;;
  6. ;;;; This library is free software; you can redistribute it and/or
  7. ;;;; modify it under the terms of the GNU Lesser General Public
  8. ;;;; License as published by the Free Software Foundation; either
  9. ;;;; version 3 of the License, or (at your option) any later version.
  10. ;;;;
  11. ;;;; This library is distributed in the hope that it will be useful,
  12. ;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. ;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. ;;;; Lesser General Public License for more details.
  15. ;;;;
  16. ;;;; You should have received a copy of the GNU Lesser General Public
  17. ;;;; License along with this library; if not, write to the Free Software
  18. ;;;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. (define-module (test-procpop)
  20. :use-module (test-suite lib))
  21. (with-test-prefix "procedure-name"
  22. (pass-if "simple subr"
  23. (eq? 'display (procedure-name display)))
  24. (pass-if "gsubr"
  25. (eq? 'hashq-ref (procedure-name hashq-ref))))
  26. (with-test-prefix "procedure-arity"
  27. (pass-if "simple subr"
  28. (equal? (procedure-minimum-arity display)
  29. '(1 1 #f)))
  30. (pass-if "gsubr"
  31. (equal? (procedure-minimum-arity hashq-ref)
  32. '(2 1 #f)))
  33. (pass-if "port-closed?"
  34. (equal? (procedure-minimum-arity port-closed?)
  35. '(1 0 #f)))
  36. (pass-if "apply"
  37. (equal? (procedure-minimum-arity apply)
  38. '(1 0 #t)))
  39. (pass-if "cons*"
  40. (equal? (procedure-minimum-arity cons*)
  41. '(1 0 #t)))
  42. (pass-if "list"
  43. (equal? (procedure-minimum-arity list)
  44. '(0 0 #t))))