https://github.com/coryodaniel/prag_prog
Learning elixir going through the Pragmatic Programming Programming Elixir Book
https://github.com/coryodaniel/prag_prog
Last synced: about 2 months ago
JSON representation
Learning elixir going through the Pragmatic Programming Programming Elixir Book
- Host: GitHub
- URL: https://github.com/coryodaniel/prag_prog
- Owner: coryodaniel
- Created: 2015-11-27T21:43:11.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-02-08T03:43:33.000Z (over 10 years ago)
- Last Synced: 2026-01-01T10:41:52.387Z (6 months ago)
- Language: Elixir
- Size: 781 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Goal
Just learnin' Elixir going through [Programming Elixir](https://pragprog.com/book/elixir/programming-elixir) by Dave Thomas.
Trying to do the whole book w/ TDD via ExUnit to pick up ExUnit and functional testing skills while I go.
## At chapter 8 switched to 1.2-rc1
[Elixir 1.2 rc1 changelog](https://github.com/elixir-lang/elixir/blob/ef5ba3af059f76489631dc26b52ecaeff09af3fe/CHANGELOG.md#erlang-18-support)
Dict, HashDict dep -> Map
Set, HashSet dep -> MapSet
## Rerun tests on change
mix test.watch
## Running IEx.pry w/ mix tests
iex -S mix test
Considering -> https://github.com/josephwilk/amrita