path: root/gnu/packages/prolog.scm
diff options
context:
space:
mode:
authorEfraim Flashner <efraim@flashner.co.il>2023-01-14 22:19:45 +0200
committerMaxim Cournoyer <maxim.cournoyer@gmail.com>2023-04-14 15:11:23 -0400
commitcdaf01af5af57699cf0a417f4d3b8cb37a02af48 (patch)
tree54d28c8f343ca5d10fdc2dc24ed9679104548640 /gnu/packages/prolog.scm
parent036d979c2357627be9cfbd7ddf27edcd27a843bc (diff)
downloadguix-cdaf01af5af57699cf0a417f4d3b8cb37a02af48.tar.gz
guix-cdaf01af5af57699cf0a417f4d3b8cb37a02af48.zip
gnu: rust-xml5ever-0.16: Update to 0.16.2.
* gnu/packages/crates-io.scm (rust-xml5ever-0.16): Update to 0.16.2.
Diffstat (limited to 'gnu/packages/prolog.scm')
0 files changed, 0 insertions, 0 deletions
macs-batch-script: print foo from emacs" "foo" (emacs-batch-script '(princ "foo"))) (test-assert "emacs-batch-script: raise &emacs-batch-error on failure" (guard (c ((emacs-batch-error? c) ;; The error message format changed between Emacs 27 and Emacs ;; 28. (string-match "[Ww]rong.*argument.*numberp.*\"three\"" (emacs-batch-error-message c)))) (emacs-batch-script '(mapcar 'number-to-string (list 1 2 "three"))))) (call-with-temporary-directory (lambda (directory) (let ((mock-elisp-file (string-append directory "/foo.el"))) (call-with-output-file mock-elisp-file (lambda (port) (display ";;; foo --- mock emacs package -*- lexical-binding: t -*- ;; Created: 4 Jun 2022 ;; Keywords: lisp test ;; Version: 1.0.0 ;;; Commentary: ;;; Code: ;;; foo.el ends here " port))) (test-equal "emacs-header-parse: fetch version" "1.0.0" (emacs-header-parse "version" mock-elisp-file)) (test-equal "emacs-header-parse: fetch keywords" "lisp test" (emacs-header-parse "keywords" mock-elisp-file)) (test-equal "emacs-header-parse: fetch nonexistent author" "nil" (emacs-header-parse "author" mock-elisp-file))))) (test-end "build-emacs-utils")