aboutsummaryrefslogtreecommitdiffstats
path: root/test/src
diff options
context:
space:
mode:
Diffstat (limited to 'test/src')
-rw-r--r--test/src/data-tests.el5
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