el-get/test/el-get-issue-310.el
Dimitri Fontaine 8db0c4d49b Fix the refactoring so that it actually works.
This includes teaching methods that they now work with a symbolp PACKAGE,
some more cleaning up, and some load-path adjustments now that a part of the
code is in a subdirectory (methods).

Also include some of the tests used to convince oneself that the refactoring
didn't break any and all use cases for el-get, with some rough documentation
about how to use them.
2011-09-22 21:48:11 +02:00

12 lines
302 B
EmacsLisp

;; https://github.com/dimitri/el-get/issues/310
;;
;; el-get refuses to compile
(let ((debug-on-error t)
(debug-ignored-errors '()))
(add-to-list 'load-path "/Users/dim/dev/emacs/el-get")
(require 'el-get)
(setq el-get-default-process-sync t
el-get-verbose t)
(el-get-install "mailq"))