Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: jjh42/mock
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.3.2
Choose a base ref
...
head repository: jjh42/mock
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Loading
Showing with 922 additions and 183 deletions.
  1. +3 −0 .formatter.exs
  2. +1 −0 .travis.yml
  3. +474 −65 README.md
  4. +255 −34 lib/mock.ex
  5. +10 −8 mix.exs
  6. +19 −16 mix.lock
  7. +14 −12 test/mock_setup_test.exs
  8. +145 −47 test/mock_test.exs
  9. +1 −1 test/test_helper.exs
3 changes: 3 additions & 0 deletions .formatter.exs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[
inputs: ["{mix,.formatter}.exs", "{config,lib,test}/**/*.{ex,exs}"]
]
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
language: elixir
elixir:
- 1.5.1
- 1.8
env:
- MIX_ENV=test
otp_release:
Loading