Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/avh4/elm-newcheck
WIP
https://github.com/avh4/elm-newcheck
Last synced: 8 days ago
JSON representation
WIP
- Host: GitHub
- URL: https://github.com/avh4/elm-newcheck
- Owner: avh4
- Created: 2017-07-03T04:52:45.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-07-09T06:36:12.000Z (over 7 years ago)
- Last Synced: 2024-10-27T12:07:17.454Z (about 2 months ago)
- Language: Elm
- Size: 34.2 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Examples
```sh
(cd examples && elm-test)
```(You will see test failures like the following because `CircularBuffer.elm` has bugs in it!)
```sh
elm-test
--------Running 1 test. To reproduce these results, run: elm-test --fuzz 100 --seed 650553919
↓ CircularBufferSpec
✗ runAllGiven [{ name = "put 0", pre = , go = },{ name = "get", pre = , go = },{ name = "put 0", pre = , go = },{ name = "get", pre = , go = },{ name = "put 0", pre = , go = },{ name = "put 0", pre = , go = },{ name = "get", pre = , go = },{ name = "get", pre = , go = }]
--> []
get --> [0]
put 0 --> [0,0]
put 0 --> [0]
get --> []
put 0 --> [0]
get --> []
put 0 --> [0]
get ==> FAILEDexpected Just 0, but got: Nothing
```