test-ob-table.el 821 B

123456789101112131415161718192021222324252627282930313233
  1. ;;; test-ob-table.el
  2. ;; Copyright (c) 2011-2012 Eric Schulte
  3. ;; Authors: Eric Schulte
  4. ;; Released under the GNU General Public License version 3
  5. ;; see: http://www.gnu.org/licenses/gpl-3.0.html
  6. ;;;; Comments:
  7. ;; Template test file for Org-mode tests
  8. ;;; Code:
  9. (let ((load-path (cons (expand-file-name
  10. ".." (file-name-directory
  11. (or load-file-name buffer-file-name)))
  12. load-path)))
  13. (require 'org-test)
  14. (require 'org-test-ob-consts))
  15. ;;; Tests
  16. ;; TODO Test Broken (wrong-type-argument number-or-marker-p "2.0")
  17. ;; (ert-deftest test-ob-table/sbe ()
  18. ;; "Test that `sbe' can be used to call code blocks from inside tables."
  19. ;; (org-test-at-id "6d2ff4ce-4489-4e2a-9c65-e3f71f77d975"
  20. ;; (should (= 2 (sbe take-sqrt (n "4"))))))
  21. (provide 'test-ob-table)
  22. ;;; test-ob-table.el ends here