https://github.com/eproxus/testutils
Useful Erlang test utilities
https://github.com/eproxus/testutils
Last synced: about 1 year ago
JSON representation
Useful Erlang test utilities
- Host: GitHub
- URL: https://github.com/eproxus/testutils
- Owner: eproxus
- License: mit
- Created: 2024-05-30T18:12:34.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-30T18:15:04.000Z (about 2 years ago)
- Last Synced: 2025-03-27T20:24:04.071Z (about 1 year ago)
- Language: Erlang
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
# testutils
Useful Erlang test utilities.
## Waiting for Calls
TBD
```erlang
Call = testutils:trace_call(lists, seq, [1, 10]),
spawn(fun() -> lists:seq(1, 10) end),
testutils:await(Call).
```