emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r113340: Explictly require ert in some test/automate


From: Glenn Morris
Subject: [Emacs-diffs] trunk r113340: Explictly require ert in some test/automated/*.el files
Date: Tue, 09 Jul 2013 07:11:58 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 113340
revision-id: address@hidden
parent: address@hidden
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Tue 2013-07-09 00:11:50 -0700
message:
  Explictly require ert in some test/automated/*.el files
  
  * automated/add-log-tests.el, automated/advice-tests.el:
  * automated/imenu-test.el, automated/python-tests.el:
  * automated/ruby-mode-tests.el, automated/xml-parse-tests.el:
  Explictly require ert.
modified:
  test/ChangeLog                 changelog-20091113204419-o5vbwnq5f7feedwu-8588
  test/automated/add-log-tests.el 
addlogtests.el-20130409173638-8ewhc059ugvv3e4v-1
  test/automated/advice-tests.el advice.el-20121111003311-i96f8i1au0zeaju7-1
  test/automated/imenu-test.el   imenutest.el-20130419190001-llae991uyr536c2b-1
  test/automated/package-x-test.el 
packagextest.el-20130627091657-y6z4ce9fzk0b3j1j-1
  test/automated/python-tests.el 
pythontests.el-20130220195218-kqcioz3fssz9hwe1-1
  test/automated/ruby-mode-tests.el 
rubymodetests.el-20120720101201-mn39s4kfopdxj3ek-1
  test/automated/xml-parse-tests.el 
xmlparsetests.el-20120701071348-bvt5w011rcwcvt5h-1
=== modified file 'test/ChangeLog'
--- a/test/ChangeLog    2013-07-08 11:51:55 +0000
+++ b/test/ChangeLog    2013-07-09 07:11:50 +0000
@@ -1,3 +1,10 @@
+2013-07-09  Glenn Morris  <address@hidden>
+
+       * automated/add-log-tests.el, automated/advice-tests.el:
+       * automated/imenu-test.el, automated/python-tests.el:
+       * automated/ruby-mode-tests.el, automated/xml-parse-tests.el:
+       Explictly require ert.
+
 2013-07-08  Kenichi Handa  <address@hidden>
 
        * automated/decoder-tests.el (decoder-tests-prefer-utf-8-read):

=== modified file 'test/automated/add-log-tests.el'
--- a/test/automated/add-log-tests.el   2013-04-14 21:57:21 +0000
+++ b/test/automated/add-log-tests.el   2013-07-09 07:11:50 +0000
@@ -22,6 +22,7 @@
 
 ;;; Code:
 
+(require 'ert)
 (require 'add-log)
 
 (defmacro add-log-current-defun-deftest (name doc major-mode

=== modified file 'test/automated/advice-tests.el'
--- a/test/automated/advice-tests.el    2013-01-15 06:05:22 +0000
+++ b/test/automated/advice-tests.el    2013-07-09 07:11:50 +0000
@@ -21,6 +21,8 @@
 
 ;;; Code:
 
+(require 'ert)
+
 (ert-deftest advice-tests-nadvice ()
   "Test nadvice code."
   (defun sm-test1 (x) (+ x 4))

=== modified file 'test/automated/imenu-test.el'
--- a/test/automated/imenu-test.el      2013-04-19 19:02:55 +0000
+++ b/test/automated/imenu-test.el      2013-07-09 07:11:50 +0000
@@ -22,6 +22,7 @@
 
 ;;; Code:
 
+(require 'ert)
 (require 'imenu)
 
 ;; (imenu-simple-scan-deftest-gather-strings-from-list

=== modified file 'test/automated/package-x-test.el'
--- a/test/automated/package-x-test.el  2013-06-27 16:14:05 +0000
+++ b/test/automated/package-x-test.el  2013-07-09 07:11:50 +0000
@@ -35,6 +35,7 @@
 (require 'package-x)
 (require 'ert)
 (require 'cl-lib)
+(eval-when-compile (require 'package-test))
 
 ;; package-test is not normally in `load-path', so temporarily set
 ;; `load-path' to contain the current directory.

=== modified file 'test/automated/python-tests.el'
--- a/test/automated/python-tests.el    2013-06-27 05:46:51 +0000
+++ b/test/automated/python-tests.el    2013-07-09 07:11:50 +0000
@@ -21,6 +21,7 @@
 
 ;;; Code:
 
+(require 'ert)
 (require 'python)
 
 (defmacro python-tests-with-temp-buffer (contents &rest body)

=== modified file 'test/automated/ruby-mode-tests.el'
--- a/test/automated/ruby-mode-tests.el 2013-07-03 01:02:18 +0000
+++ b/test/automated/ruby-mode-tests.el 2013-07-09 07:11:50 +0000
@@ -21,6 +21,7 @@
 
 ;;; Code:
 
+(require 'ert)
 (require 'ruby-mode)
 
 (defun ruby-should-indent (content column)

=== modified file 'test/automated/xml-parse-tests.el'
--- a/test/automated/xml-parse-tests.el 2013-01-01 09:11:05 +0000
+++ b/test/automated/xml-parse-tests.el 2013-07-09 07:11:50 +0000
@@ -27,6 +27,7 @@
 
 ;;; Code:
 
+(require 'ert)
 (require 'xml)
 
 (defvar xml-parse-tests--data


reply via email to

[Prev in Thread] Current Thread [Next in Thread]