docs: Condense Ruby test framework docs (#32472)

Since `tldr` and `quickdraw` use the same kind of task syntax as RSpec,
I don't think it's necessary to have separate examples.

cc @joeldrapper @vitallium 

Release Notes:

- N/A
This commit is contained in:
Andy Waite 2025-06-10 15:58:57 -04:00 committed by GitHub
parent 3f419b32f8
commit e62e9facf0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -339,28 +339,4 @@ Plain minitest does not support running tests by line number, only by name, so w
]
```
### quickdraw
```json
[
{
"label": "test $ZED_RELATIVE_FILE:$ZED_ROW",
"command": "bundle",
"args": ["exec", "qt", "exec", "qt", "\"$ZED_RELATIVE_FILE:$ZED_ROW\""],
"tags": ["ruby-test"]
}
]
```
### tldr
```json
[
{
"label": "test $ZED_RELATIVE_FILE:$ZED_ROW",
"command": "bundle",
"args": ["exec", "tldr", "\"$ZED_RELATIVE_FILE:$ZED_ROW\""],
"tags": ["ruby-test"]
}
]
```
Similar task syntax can be used for other test frameworks such as `quickdraw` or `tldr`.