test-number-to-string.scm 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. ;;; Copyright (C) 2023 Igalia, S.L.
  2. ;;;
  3. ;;; Licensed under the Apache License, Version 2.0 (the "License");
  4. ;;; you may not use this file except in compliance with the License.
  5. ;;; You may obtain a copy of the License at
  6. ;;;
  7. ;;; http://www.apache.org/licenses/LICENSE-2.0
  8. ;;;
  9. ;;; Unless required by applicable law or agreed to in writing, software
  10. ;;; distributed under the License is distributed on an "AS IS" BASIS,
  11. ;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. ;;; See the License for the specific language governing permissions and
  13. ;;; limitations under the License.
  14. (use-modules (srfi srfi-64)
  15. (test utils))
  16. (test-begin "test-number-to-string")
  17. (define-syntax test-number->string
  18. (syntax-rules ()
  19. ((_ n) (test-number->string (number->string n) n))
  20. ((_ expected-output n)
  21. (test-number->string expected-output expected-output n))
  22. ((_ scheme-repr reflect-repr n)
  23. (let ((output (string-append scheme-repr reflect-repr)))
  24. (test-call output
  25. (lambda ()
  26. (write-string (number->string n) (current-output-port))
  27. (flush-output-port (current-output-port))
  28. n))))))
  29. (test-number->string 42)
  30. (test-end* "test-number-to-string")