]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix EIEIO methodinvoke-utest and semantic-fmt-utest.
authorDavid Engster <dengste@eml.cc>
Sun, 22 Apr 2012 11:27:38 +0000 (13:27 +0200)
committerEdward John Steere <edward.steere@gmail.com>
Wed, 25 Jan 2017 18:13:42 +0000 (20:13 +0200)
* Makefile: Add tests/eieio to path for unit tests.

* tests/cedet-utest.el (cedet/semantic/fmt-utest): Require.

* tests/cedet/semantic/fmt-utest.el: Fix requires and rename
  accordingly.

test/manual/cedet/cedet/semantic/fmt-utest.el

index 14c329bf81b8c710097fc231781202a84002e812..fc3140fd82d7cd1c036e56cd04ef53d862a11f5c 100644 (file)
@@ -1,4 +1,4 @@
-;;; semantic-fmt-utest.el --- Parsing / Formatting tests
+;;; cedet/semantic/fmt-utest.el --- Parsing / Formatting tests
 ;;
 ;; Copyright (C) 2012 Eric M. Ludlam
 ;;
@@ -28,9 +28,8 @@
 ;; make sure that the semantic-tag-format-* functions in question
 ;; created the desired output.
 
-(require 'cedet-utests)
 (require 'semantic)
-(require 'semantic-format)
+(require 'semantic/format)
 
 ;;; Code:
 
@@ -58,7 +57,7 @@ Files to visit are in `semantic-fmt-utest-file-list'."
       (cedet-utest-log-setup "PARSE/FORMAT")
 
       (set-buffer (semantic-find-file-noselect
-                  (locate-library "semantic-fmt-utest.el")))
+                  (locate-library "cedet/semantic/fmt-utest.el")))
 
       (dolist (FILE fl)
 
@@ -156,6 +155,6 @@ Pass ARGS to format to create the log message."
   ;; Forward to CEDET utest framework.
   (apply 'cedet-utest-log args))
 
-(provide 'semantic-fmt-utest)
+(provide 'cedet/semantic/fmt-utest)
 
 ;;; semantic-fmt-utest.el ends here