https://github.com/tyrcho/haskell-rover-kata
https://github.com/tyrcho/haskell-rover-kata
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/tyrcho/haskell-rover-kata
- Owner: tyrcho
- Created: 2018-04-19T08:05:54.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-04-20T12:16:12.000Z (about 7 years ago)
- Last Synced: 2025-02-13T00:32:02.594Z (4 months ago)
- Language: Haskell
- Size: 9.77 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
* installed haskell for windows from [here](https://www.haskell.org/platform/windows.html)
* using IntelliJ with plugin [haskforce](https://github.com/carymrobbins/intellij-haskforce)
* need to create a CabalRun config (described [here](https://github.com/carymrobbins/intellij-haskforce/issues/240))* Got inspiration from [haskell-project-skeleton](http://taylor.fausak.me/2014/03/04/haskeleton-a-haskell-project-skeleton/)
* and from this [gist](https://gist.github.com/Risto-Stevcev/a9798abc898fba99235b) to setup tests## Run with cabal
cabal run
## Tests with cabal
cabal install --enable-tests
cabal configure --enable-tests
cabal test## Tests with ghci
ghci
:load tests/MarsRoverTests.hs src/Directions.hs src/Rover.hs
runTestTT tests