]> code.delx.au - gnu-emacs-elpa/blob - packages/test-simple/test/test-no-clear.el
Merge commit '0cda39255827f283e7578cd469ae42daad9556a2' from js2-mode
[gnu-emacs-elpa] / packages / test-simple / test / test-no-clear.el
1 ;;; test-simple.el --- Simple Unit Test Framework for Emacs Lisp
2 ;; Copyright (C) 2015 Free Software Foundation, Inc
3 ;; Author: Rocky Bernstein <rocky@gnu.org>
4 ;; This program is free software: you can redistribute it and/or
5 ;; modify it under the terms of the GNU General Public License as
6 ;; published by the Free Software Foundation, either version 3 of the
7 ;; License, or (at your option) any later version.
8
9 ;; This program is distributed in the hope that it will be useful, but
10 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
11 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 ;; General Public License for more details.
13
14 ;; You should have received a copy of the GNU General Public License
15 ;; along with this program. If not, see
16 ;; <http://www.gnu.org/licenses/>.
17 (require 'cl)
18 (load-file "../test-simple.el")
19 ;; We don't do this or test-simple-start
20 ;; (test-simple-clear)
21
22 (note "no-test-start")
23 (assert-t (memq 'test-simple features) "'test-simple provided")
24
25 (assert-nil nil)
26
27 (end-tests)