An open API service indexing awesome lists of open source software.

https://github.com/sirscriptalot/test

An experimental Red testing dialect.
https://github.com/sirscriptalot/test

lesscode testing

Last synced: 10 months ago
JSON representation

An experimental Red testing dialect.

Awesome Lists containing this project

README

          

# test

An experimentation Red testing dialect.

# Usage

```red
; './tests/all.red'

ball: object [
toss: does [
"always blue!"
]
]

test "ball/toss" [
"is always blue!" [
ball/toss = "always blue!" ; return value from the block must be truthy to pass
]
]
```

Run your tests via the red CLI:

`red -s ./tests/all.red`