diff options
Diffstat (limited to 'test/src/data-tests.el')
| -rw-r--r-- | test/src/data-tests.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/src/data-tests.el b/test/src/data-tests.el index 543bb90f73f..1143028a126 100644 --- a/test/src/data-tests.el +++ b/test/src/data-tests.el | |||
| @@ -574,4 +574,9 @@ comparing the subr with a much slower lisp implementation." | |||
| 574 | (should-not (fixnump (+ most-positive-fixnum 1))) | 574 | (should-not (fixnump (+ most-positive-fixnum 1))) |
| 575 | (should (bignump (+ most-positive-fixnum 1)))) | 575 | (should (bignump (+ most-positive-fixnum 1)))) |
| 576 | 576 | ||
| 577 | (ert-deftest data-tests-number-to-string () | ||
| 578 | (let* ((s "99999999999999999999999999999") | ||
| 579 | (v (read s))) | ||
| 580 | (should (equal (number-to-string v) s)))) | ||
| 581 | |||
| 577 | ;;; data-tests.el ends here | 582 | ;;; data-tests.el ends here |