https://github.com/dojo-toulouse/elixir-koans
Small exercises to discover elixir by testing
https://github.com/dojo-toulouse/elixir-koans
Last synced: 12 months 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 (over 12 years ago)
- Default Branch: master
- Last Pushed: 2016-03-22T14:22:14.000Z (almost 10 years ago)
- Last Synced: 2024-11-01T07:33:21.498Z (over 1 year ago)
- Language: Elixir
- Homepage:
- Size: 52.7 KB
- Stars: 249
- Watchers: 10
- Forks: 61
- 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)
- fucking-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 git@github.com: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)