Skip to content

Commit

Permalink
Update README and CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
parroty committed Dec 20, 2015
1 parent bed6ad2 commit a5b0143
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
0.3.2
------
#### Enhancements
* Allow ExUnit tags to set iterations per test (#16).
- Add ExCheck.check/2.

0.3.1
------
#### Changes
Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,12 @@ defmodule ExCheck.SampleTest do
Enum.at(result, 0) == x and Enum.count(result) == Enum.count(y) + 1
end
end

# specify iteration count for running test
@tag iterations: 30
property :square_with_iteration_count do
for_all x in int, do: x * x >= 0
end
end
```

Expand Down

0 comments on commit a5b0143

Please sign in to comment.