-
-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fc849f8
commit 70da37b
Showing
3 changed files
with
20 additions
and
13 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Help | ||
|
||
To get help if you're having trouble, you can use one of the following resources: | ||
|
||
- [The Emacs Wiki](http://emacswiki.org/) is invaluable. Spend lots of time here. | ||
- [The Emacs Editor](http://www.gnu.org/software/emacs/manual/html_node/emacs/index.html) is the official manual for GNU Emacs. | ||
- IRC - there are [freenode](https://freenode.net/) channels for `#emacs`, `#prelude`, and many Emacs | ||
packages, and many helpful folks around. And with emacs, IRC is as close as | ||
`M-x erc`. | ||
- [Exercism Support](https://gitter.im/exercism/support) Gitter chat is also a good place to get help from the | ||
exercism community. | ||
- [StackOverflow](http://stackoverflow.com/questions/tagged/elisp) can be used to search for your problem and see if it has been answered already. You can also ask and answer questions. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Tests | ||
|
||
Tests can be run several ways: | ||
|
||
1. Interactively and individually, with `M-x ert RET test-name RET` | ||
2. Interactively and all at once, with `M-x ert RET t RET` | ||
3. From the terminal, in batch mode, with `emacs -batch -l ert -l my-test.el -f ert-run-tests-batch-and-exit` | ||
4. Other options can be found in the docs, `C-h i m ert RET` |