el-get/test/issues/el-get-issue-1562.el
Noam Postavsky d79c395f22 enable ert tests in travis, reorganize test files
rename ert tests file test.el => el-get-tests.el
move el-get-issue-* files to separate dir
2015-11-13 23:39:27 -05:00

23 lines
705 B
EmacsLisp

;;; https://github.com/dimitri/el-get/issues/1562 Removing a package
;;; that comes with an info manual, causes an error when calling info
(el-get-register-method-alias :test :builtin)
;;; install a
(setq el-get-sources
`((:name a :type test
:build (("sh" "-c"
,(format "echo %s > a.info"
(shell-quote-argument
(concat
"\x1f\n"
"Tag Table:\n"
"\x1f\n"
"End Tag Table\n")))))
:info ".")))
(el-get 'sync "a")
(el-get-remove "a")
(info)