Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jjasghar/test-kitchen-el
Run test-kitchen inside of emacs
https://github.com/jjasghar/test-kitchen-el
Last synced: 26 days ago
JSON representation
Run test-kitchen inside of emacs
- Host: GitHub
- URL: https://github.com/jjasghar/test-kitchen-el
- Owner: jjasghar
- Created: 2015-04-24T22:51:59.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-11-29T20:35:31.000Z (almost 7 years ago)
- Last Synced: 2023-03-22T23:17:14.664Z (over 1 year ago)
- Language: Emacs Lisp
- Homepage: https://github.com/jjasghar/test-kitchen-el
- Size: 21.5 KB
- Stars: 4
- Watchers: 2
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.org
- Changelog: CHANGELOG.org
Awesome Lists containing this project
README
* test-kitchen.el -- Run test-kitchen inside of emacs
** Overview
This plugin allows you to run your test-kitchen run inside of Emacs.
No need to shell out or tab out to run `kitchen` commands.This plugin also assumes you have [[https://downloads.chef.io/chef-dk/][ChefDK]] installed.
I'd like to thank [[https://twitter.com/camdez][Cameron Desautels]] for the jump start on this project. /me tips my hat to you sir.
I'd also like to thank [[http://twitter.com/ionrock][Eric Larson]] for pushing me to keep this alive.
This plugin was also inspired from the following sites:
- http://blog.binchen.org/posts/open-readme-under-git-root-directory-in-emacs.html
- http://stackoverflow.com/questions/821853/splitting-window-in-emacs-lisp-function** Key bindings
The following key bindings are just suggestions, I just didn't have these bound to anything.
#+BEGIN_SRC elisp
(global-set-key (kbd "C-c C-d") 'test-kitchen-destroy)
(global-set-key (kbd "C-c C-t") 'test-kitchen-test)
(global-set-key (kbd "C-c l") 'test-kitchen-list)
(global-set-key (kbd "C-c C-kc") 'test-kitchen-converge)
(global-set-key (kbd "C-c C-kv") 'test-kitchen-verify)
#+END_SRC** Things that are needed to be done at some point
1. Have a way to select the only one suite to run
2. Have a way to select only one os to run** License
This file is NOT part of GNU Emacs.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.See for a copy of the GNU General
Public License.Copyright (C) 2015 JJ Asghar