diff options
author | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2022-01-09 12:39:26 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2022-01-09 12:40:25 +0900 |
commit | 83983bacbc78edf94ee66f9a3218095c0876ed4e (patch) | |
tree | 5ae208046ec2e8623e08bdd65239b667c9bbe0f0 /doc | |
parent | a7faca51acd34b73de037b4ba4956e1dd05a3839 (diff) |
[DOC] Mention `make check`
Diffstat (limited to 'doc')
-rw-r--r-- | doc/hacking.md | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/hacking.md b/doc/hacking.md index 2a2c6f0959..b5197b9c52 100644 --- a/doc/hacking.md +++ b/doc/hacking.md @@ -54,6 +54,14 @@ make run If you want more of the standard library, you can use `runruby` instead of `run`. +## Running Tests + +You can run the following tests at once: + +``` shell +make check +``` + ### Run Bootstrap Tests There are a set of tests in `bootstraptest/` which cover most basic features of the core Ruby language. |