Jon Boone pushed to branch issue-154-piglatin-translation-doesnt-work-anymore at cmucl / cmucl
Commits: 468889bf by Jon Boone at 2023-06-03T20:06:38-04:00 adding test for issue 154 fix
- - - - -
1 changed file:
- tests/issues.lisp
Changes:
===================================== tests/issues.lisp ===================================== @@ -830,7 +830,12 @@ (assert-true (stream::find-external-format :euckr)) (assert-true (stream::find-external-format :cp949))))
- +(define-test issue.154 + (:tag :issues) + (let ((locale "en_US.UTF-8@piglatin") + (piglatin_text "Ethay izesay ofway away eamstray inway-ufferbay.")) + (assert-equal locale (intl:setlocale "en_US.UTF-8@piglatin")) + (assert-equal piglatin_text (intl:dgettext "cmucl" "The size of a stream in-buffer."))))
(define-test issue.158 (:tag :issues)
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/468889bf4e90e34b907a6cb7...