el-get/test/el-get-issue-432.el
Ryan C. Thompson 1fb104010c Use setq instead of let in tests
This makes it easier to run tests interactively and inspect the
results afterward, because the variables such as "el-get-sources" that
were set for the tests are still bound to the values they had during
the test.
2012-03-18 12:33:04 -07:00

15 lines
428 B
EmacsLisp

;; https://github.com/dimitri/el-get/issues/432
;;
;; Real-life example: cperl-mode depends on mode-compile. Try installing
;; mode-compile first, then cperl-mode.
(setq debug-on-error t
debug-ignored-errors 'nil
el-get-default-process-sync t
el-get-verbose t
el-get-byte-compile-at-init t)
(message "%S" (el-get-dependencies 'cperl-mode))
(el-get-install "mode-compile")
(el-get-install "cperl-mode")