Skip to content

Commit

Permalink
Update triq dependency to use hex.pm (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
parroty committed Jun 10, 2018
1 parent 184cf48 commit 127e47e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 deletions.
7 changes: 2 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
# ExCheck [![Build Status](https://secure.travis-ci.org/parroty/excheck.svg?branch=master "Build Status")](http://travis-ci.org/parroty/excheck) [![Coverage Status](http://img.shields.io/coveralls/parroty/excheck.svg)](https://coveralls.io/r/parroty/excheck) [![Inline docs](http://inch-ci.org/github/parroty/excheck.svg?branch=master&style=flat)](http://inch-ci.org/github/parroty/excheck)

Property-based testing for Elixir (QuickCheck style).
It uses Erlang's [triq](https://github.com/krestenkrab/triq) library for underlying checking engine, and ExCheck's modules provide wrapper macros for ExUnit tests.

Note: as of v0.5, `triqng/triq` is applied for fixing the issue #30.
It uses Erlang's [triq](https://gitlab.com/triq/triq) library for underlying checking engine, and ExCheck's modules provide wrapper macros for ExUnit tests.

### Installation

Expand All @@ -12,8 +10,7 @@ First add ExCheck and triq to your project's dependencies in mix.exs.
```Elixir
defp deps do
[
{:excheck, "~> 0.5", only: :test},
{:triq, github: "triqng/triq", only: :test}
{:excheck, "~> 0.6", only: :test}
]
end
```
Expand Down
4 changes: 2 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ defmodule ExCheck.Mixfile do
name: "ExCheck",
source_url: "https://github.com/parroty/ExCheck.git",
homepage_url: "https://github.com/parroty/ExCheck.git",
version: "0.5.3",
version: "0.6.0",
elixir: "~> 1.0",
deps: deps(),
description: description(),
Expand All @@ -26,7 +26,7 @@ defmodule ExCheck.Mixfile do
def deps do
[
{:excoveralls, "~> 0.5", only: :test},
{:triq, github: "triqng/triq", only: [:dev, :test]},
{:triq, "~> 1.2", only: [:dev, :test]},
{:ex_doc, "~> 0.12", only: :dev},
{:inch_ex, only: :docs}
]
Expand Down
2 changes: 1 addition & 1 deletion mix.lock
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
"poison": {:hex, :poison, "2.2.0", "4763b69a8a77bd77d26f477d196428b741261a761257ff1cf92753a0d4d24a63", [:mix], []},
"ssl_verify_fun": {:hex, :ssl_verify_fun, "1.1.0", "edee20847c42e379bf91261db474ffbe373f8acb56e9079acb6038d4e0bf414f", [:rebar, :make], []},
"ssl_verify_hostname": {:hex, :ssl_verify_hostname, "1.0.5", "2e73e068cd6393526f9fa6d399353d7c9477d6886ba005f323b592d389fb47be", [:make], []},
"triq": {:git, "https://github.com/triqng/triq.git", "810eed84f66cc2596cf26ce731beed34ae3ed977", []}}
"triq": {:hex, :triq, "1.2.0", "3fbf99c16671f084b558f7e799e38d92835d67dcc012fb40d418330ea1053455", [:rebar3], []}}

0 comments on commit 127e47e

Please sign in to comment.