summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2020-02-10 13:28:54 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2020-02-10 13:28:54 +0900
commit442c6de5546b233364c295155953cd0bc17e99e3 (patch)
tree3b6f6609383d39696eba91032a1750187b26fd84 /doc
parentf83781c8c109b7f0b8cd6604d8fed6b8c13b8fd3 (diff)
Added commands of test-bundler to cheatsheet.
Diffstat (limited to 'doc')
-rw-r--r--doc/make_cheatsheet.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/make_cheatsheet.md b/doc/make_cheatsheet.md
index f79d751bdc..c9cc636f06 100644
--- a/doc/make_cheatsheet.md
+++ b/doc/make_cheatsheet.md
@@ -38,6 +38,7 @@ It runs (about) three test suites:
* `make test` (a test suite for the interpreter core)
* `make test-all` : (for all builtin classes and libraries)
* `make test-spec` : (a conformance test suite for Ruby implementations)
+* `make test-bundler` : (a test suite for the bundler examples)
## How to run the test suite with log
@@ -66,6 +67,8 @@ $ make test-all TESTS="test/ruby/test_foo.rb -n /test_bar/"
```
$ make test-spec MSPECOPT=spec/ruby/core/foo/bar_spec.rb
+
+$ make test-bundler BUNDLER_SPECS=commands/exec_spec.rb:58
```
## How to measure coverage of C and Ruby code