;;; test-org-tempo.el --- Tests for test-org-tempo.el -*- lexical-binding: t; -*- ;; Copyright (C) 2017 Rasmus Pank Roulund ;; Author: Rasmus Pank Roulund ;; This file is not part of GNU Emacs. ;; 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 . ;;; Code: (require 'org-tempo) (unless (featurep 'org-tempo) (signal 'missing-test-dependency "org-tempo")) (ert-deftest test-org-tempo/completion () "Test that blocks and keywords are expanded correctly by org-tempo." ;; Tempo completion should recognize snippet keywords and expand with tab (should (equal (org-test-with-temp-text "" (org-tempo-setup) (tempo-complete-tag) (buffer-string)) "#+latex: ")) ;; Tempo completion should recognize snippet Blocks (should (equal (org-test-with-temp-text "" (org-tempo-setup) (call-interactively 'org-cycle) (buffer-string)) "#+begin_export latex \n\n#+end_export")) ;; Tab should work for expansion. (should (equal (org-test-with-temp-text "" (org-tempo-setup) (tempo-complete-tag) (buffer-string)) (org-test-with-temp-text "" (org-tempo-setup) (org-cycle) (buffer-string)))) ;; Tempo should not expand unknown snippets (equal (org-test-with-temp-text "