-
Notifications
You must be signed in to change notification settings - Fork 4
/
python-test-test.el
44 lines (29 loc) · 1.36 KB
/
python-test-test.el
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
;;; python-test-test.el --- python-test: Unit test suite -*- lexical-binding: t -*-
;; Copyright (c) 2015 Mario Rodas <marsam@users.noreply.github.com>
;; Author: Mario Rodas <marsam@users.noreply.github.com>
;; URL: https://github.com/emacs-pe/python-test.el
;; Keywords: convenience
;; Version: 0.1
;; Package-Requires: ((emacs "24.3"))
;; This file is NOT part of GNU Emacs.
;;; License:
;; 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:
;; The unit test suite of python-test
;;; Code:
(when (require 'undercover nil 'no-error)
(undercover "python-test.el"))
(require 'python-test)
(ert-deftest python-test-path-module ()
(should (equal (python-test-path-module "path/to/file.py") "path.to.file")))
(provide 'python-test-test)
;;; python-test-test.el ends here