;;; setup-ert-tests.el --- Provide needed forms ;; Copyright (C) 2014 Andreas Roehler ;; Author: Andreas Roehler ;; Keywords: lisp ;; This program is free software; you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by ;; the Free Software Foundation, either version 3 of the License, or ;; (at your option) any later version. ;; This program is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;; GNU General Public License for more details. ;; You should have received a copy of the GNU General Public License ;; along with this program. If not, see . ;;; Commentary: ;;; Code: (setq py-install-directory default-directory) (sit-for 0.1 t) ;; (require 'python-mode) (defvar py-debug-p nil "Avoid error") (defmacro py-test-with-temp-buffer-point-min (contents &rest body) "Create temp buffer in `python-mode' inserting CONTENTS. BODY is code to be executed within the temp buffer. Point is at the beginning of buffer." (declare (indent 1) (debug t)) `(with-temp-buffer ;; (and (featurep 'python) (unload-feature 'python)) (let (hs-minor-mode) (insert ,contents) (python-mode) (goto-char (point-min)) (when py-debug-p (switch-to-buffer (current-buffer)) (font-lock-fontify-buffer)) ,@body))) (defmacro py-test-with-temp-buffer (contents &rest body) "Create temp buffer in `python-mode' inserting CONTENTS. BODY is code to be executed within the temp buffer. Point is at the end of buffer." (declare (indent 1) (debug t)) `(with-temp-buffer ;; (and (featurep 'python) (unload-feature 'python)) (let (hs-minor-mode) (insert ,contents) (python-mode) (when py-debug-p (switch-to-buffer (current-buffer)) (font-lock-fontify-buffer)) ;; (message "ERT %s" (point)) ,@body))) (provide 'setup-ert-tests) ;; setup-ert-tests.el ends here