[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] scratch/el-mock 280e988956 33/64: Add more documentation to REA
From: |
Stefan Monnier |
Subject: |
[nongnu] scratch/el-mock 280e988956 33/64: Add more documentation to README.md |
Date: |
Mon, 28 Aug 2023 23:01:40 -0400 (EDT) |
branch: scratch/el-mock
commit 280e988956704af1840c455d512da9b9dbd0ad48
Author: Gabriel M Deal <gabriel@dicksonlabs.com>
Commit: Gabriel M Deal <gabriel@dicksonlabs.com>
Add more documentation to README.md
Add a small example. Add pointers to the full API documentation.
---
README.md | 14 ++++++++++++++
1 file changed, 14 insertions(+)
diff --git a/README.md b/README.md
index 4af180ceff..9ed344f90c 100644
--- a/README.md
+++ b/README.md
@@ -15,6 +15,20 @@ Add this to your test-helper, [for
instance](https://github.com/rejeep/prodigy.e
(require 'cl)) ;; for el-mock
```
+An example of a simple mock that displays "/mocked/file/name.el":
+```
+(with-mock
+ (stub buffer-file-name => "/mocked/file/name.el")
+ (display-message-or-buffer (buffer-file-name)))
+```
+
+## Documentation
+
+Find the documentation at `M-x describe-function RET with-mock RET`
+and `M-x describe-function RET mocklet RET`.
+
+The old documentation is at https://www.emacswiki.org/emacs/EmacsLispMock
+
## Contribution
- [nongnu] scratch/el-mock d43353c2aa 21/64: Add How to use it section to readme, (continued)
- [nongnu] scratch/el-mock d43353c2aa 21/64: Add How to use it section to readme, Stefan Monnier, 2023/08/28
- [nongnu] scratch/el-mock 992db170a3 20/64: Merge branch 'bug5', Stefan Monnier, 2023/08/28
- [nongnu] scratch/el-mock 4c54b7247b 22/64: Merge branch 'patch-1', Stefan Monnier, 2023/08/28
- [nongnu] scratch/el-mock a091520345 23/64: Update Travis config, Stefan Monnier, 2023/08/28
- [nongnu] scratch/el-mock 5cb160b9bd 24/64: Don't use sudo on Travis, Stefan Monnier, 2023/08/28
- [nongnu] scratch/el-mock 8cb59fc562 25/64: ©setup cask-package-toolset and update gitignore, Stefan Monnier, 2023/08/28
- [nongnu] scratch/el-mock a303e198a7 26/64: Setup coverage, Stefan Monnier, 2023/08/28
- [nongnu] scratch/el-mock 8309faf0be 27/64: Add Continous Integration Badges, Stefan Monnier, 2023/08/28
- [nongnu] scratch/el-mock 3aab4e3daf 29/64: Merge pull request #14 from phst/no-condition-case, Stefan Monnier, 2023/08/28
- [nongnu] scratch/el-mock 034c7e5fca 30/64: Run tests on Travis in Emacs 25.1, Stefan Monnier, 2023/08/28
- [nongnu] scratch/el-mock 280e988956 33/64: Add more documentation to README.md,
Stefan Monnier <=
- [nongnu] scratch/el-mock 68992d4361 35/64: Merge pull request #16 from phst/cl-lib, Stefan Monnier, 2023/08/28
- [nongnu] scratch/el-mock e3cff9f127 32/64: Merge pull request #13 from phst/fix-tests, Stefan Monnier, 2023/08/28
- [nongnu] scratch/el-mock 136e0550e5 34/64: Migrate from obsolete cl.el to cl-lib, Stefan Monnier, 2023/08/28
- [nongnu] scratch/el-mock 9e4d092179 38/64: Merge pull request #19 from ardumont/master, Stefan Monnier, 2023/08/28
- [nongnu] scratch/el-mock 84a743cfcb 40/64: Fix all compilation warnings, Stefan Monnier, 2023/08/28
- [nongnu] scratch/el-mock b3accacee4 42/64: el-mock doesn’t need cl.el any more, Stefan Monnier, 2023/08/28
- [nongnu] scratch/el-mock 6443c2aef4 46/64: Also run tests under Emacs 25.2, Stefan Monnier, 2023/08/28
- [nongnu] scratch/el-mock 40a4e003e1 48/64: Add Github Actions, Stefan Monnier, 2023/08/28
- [nongnu] scratch/el-mock 88038b382c 56/64: fix 80 character width warning seen here:, Stefan Monnier, 2023/08/28
- [nongnu] scratch/el-mock e65ec012a7 44/64: Document that and when arguments and return values are evaluated, Stefan Monnier, 2023/08/28