1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
|
;;; py-execute-region-commandp-test.el --- Test execute region forms
;; Copyright (C) 2015 Andreas Röhler
;; Author: Andreas Röhler <andreas.roehler@online.de>
;; Keywords: languages, convenience
;; 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 <http://www.gnu.org/licenses/>.
;;; Commentary:
;; This file is generated by function from python-mode-utils.el - see in
;; directory devel. Edits here might not be persistent.
;;; Code:
(ert-deftest py-execute-region-commandp-test ()
(should (commandp 'py-execute-region)))
(ert-deftest py-execute-region-switch-commandp-test ()
(should (commandp 'py-execute-region-switch)))
(ert-deftest py-execute-region-no-switch-commandp-test ()
(should (commandp 'py-execute-region-no-switch)))
(ert-deftest py-execute-region-dedicated-commandp-test ()
(should (commandp 'py-execute-region-dedicated)))
(ert-deftest py-ert-execute-region-python-commandp-test ()
(should (commandp 'py-execute-region-python)))
(ert-deftest py-ert-execute-region-python-switch-commandp-test ()
(should (commandp 'py-execute-region-python-switch)))
(ert-deftest py-ert-execute-region-python-no-switch-commandp-test ()
(should (commandp 'py-execute-region-python-no-switch)))
(ert-deftest py-ert-execute-region-python-dedicated-commandp-test ()
(should (commandp 'py-execute-region-python-dedicated)))
(ert-deftest py-ert-execute-region-python2-commandp-test ()
(should (commandp 'py-execute-region-python2)))
(ert-deftest py-ert-execute-region-python2-switch-commandp-test ()
(should (commandp 'py-execute-region-python2-switch)))
(ert-deftest py-ert-execute-region-python2-no-switch-commandp-test ()
(should (commandp 'py-execute-region-python2-no-switch)))
(ert-deftest py-ert-execute-region-python2-dedicated-commandp-test ()
(should (commandp 'py-execute-region-python2-dedicated)))
(ert-deftest py-ert-execute-region-python3-commandp-test ()
(should (commandp 'py-execute-region-python3)))
(ert-deftest py-ert-execute-region-python3-switch-commandp-test ()
(should (commandp 'py-execute-region-python3-switch)))
(ert-deftest py-ert-execute-region-python3-no-switch-commandp-test ()
(should (commandp 'py-execute-region-python3-no-switch)))
(ert-deftest py-ert-execute-region-python3-dedicated-commandp-test ()
(should (commandp 'py-execute-region-python3-dedicated)))
(ert-deftest py-ert-execute-region-ipython-commandp-test ()
(should (commandp 'py-execute-region-ipython)))
(ert-deftest py-ert-execute-region-ipython-switch-commandp-test ()
(should (commandp 'py-execute-region-ipython-switch)))
(ert-deftest py-ert-execute-region-ipython-no-switch-commandp-test ()
(should (commandp 'py-execute-region-ipython-no-switch)))
(ert-deftest py-ert-execute-region-ipython-dedicated-commandp-test ()
(should (commandp 'py-execute-region-ipython-dedicated)))
(ert-deftest py-ert-execute-region-ipython2.7-commandp-test ()
(should (commandp 'py-execute-region-ipython2.7)))
(ert-deftest py-ert-execute-region-ipython2.7-switch-commandp-test ()
(should (commandp 'py-execute-region-ipython2.7-switch)))
(ert-deftest py-ert-execute-region-ipython2.7-no-switch-commandp-test ()
(should (commandp 'py-execute-region-ipython2.7-no-switch)))
(ert-deftest py-ert-execute-region-ipython2.7-dedicated-commandp-test ()
(should (commandp 'py-execute-region-ipython2.7-dedicated)))
(ert-deftest py-ert-execute-region-ipython3-commandp-test ()
(should (commandp 'py-execute-region-ipython3)))
(ert-deftest py-ert-execute-region-ipython3-switch-commandp-test ()
(should (commandp 'py-execute-region-ipython3-switch)))
(ert-deftest py-ert-execute-region-ipython3-no-switch-commandp-test ()
(should (commandp 'py-execute-region-ipython3-no-switch)))
(ert-deftest py-ert-execute-region-ipython3-dedicated-commandp-test ()
(should (commandp 'py-execute-region-ipython3-dedicated)))
(ert-deftest py-ert-execute-region-jython-commandp-test ()
(should (commandp 'py-execute-region-jython)))
(ert-deftest py-ert-execute-region-jython-switch-commandp-test ()
(should (commandp 'py-execute-region-jython-switch)))
(ert-deftest py-ert-execute-region-jython-no-switch-commandp-test ()
(should (commandp 'py-execute-region-jython-no-switch)))
(ert-deftest py-ert-execute-region-jython-dedicated-commandp-test ()
(should (commandp 'py-execute-region-jython-dedicated)))
(provide 'py-execute-region-commandp-test)
;;; py-execute-region-commandp-test.el ends here
|