Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dojo-toulouse/elixir-koans
Small exercises to discover elixir by testing
https://github.com/dojo-toulouse/elixir-koans
Last synced: about 1 month ago
JSON representation
Small exercises to discover elixir by testing
- Host: GitHub
- URL: https://github.com/dojo-toulouse/elixir-koans
- Owner: dojo-toulouse
- Created: 2013-10-22T13:42:17.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2016-03-22T14:22:14.000Z (over 8 years ago)
- Last Synced: 2024-08-02T02:11:42.689Z (4 months ago)
- Language: Elixir
- Homepage:
- Size: 52.7 KB
- Stars: 249
- Watchers: 10
- Forks: 62
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- freaking_awesome_elixir - Elixir - Learn Elixir by using elixir-koans. (Examples and funny stuff)
- fucking-awesome-elixir - koans - Learn Elixir by using elixir-koans. (Examples and funny stuff)
- awesome-elixir - koans - Learn Elixir by using elixir-koans. (Examples and funny stuff)
README
elixir-koans
============
Discover elixir lang by replacing "__?" and "assert_?" to make tests pass.Install
-------```bash
$ git clone [email protected]:dojo-toulouse/elixir-koans.git
$ cd elixir-koans
```
Get deps```bash
$ mix deps.get
```Compile
```bash
$ mix compile
```Launch
-------**You can safely ignore warnings**
```bash
$ mix test
```or
Launch with reload
```bash
$ mix test.watch```
Note: On Linux you may need to install [inotify-tools](https://github.com/rvoicilas/inotify-tools/wiki#getting-inotify-tools) for test.watch task.
[Advanced `mix test` options] (http://elixir-lang.org/docs/v1.0/mix/Mix.Tasks.Test.html)