Work on test case for secure channel
This commit is contained in:
parent
e52fe31b79
commit
2c0b0024a1
11 changed files with 603 additions and 16 deletions
6
mix.exs
6
mix.exs
|
|
@ -7,7 +7,8 @@ defmodule Tres.Mixfile do
|
|||
elixir: "~> 1.5",
|
||||
start_permanent: Mix.env == :prod,
|
||||
compilers: [:erlang] ++ Mix.compilers,
|
||||
deps: deps()]
|
||||
deps: deps(),
|
||||
aliases: [test: "test --no-start"]]
|
||||
end
|
||||
|
||||
# Run "mix help compile.app" to learn about applications.
|
||||
|
|
@ -20,6 +21,7 @@ defmodule Tres.Mixfile do
|
|||
defp deps do
|
||||
[{:ranch, "~> 1.4.0"},
|
||||
{:binpp, github: "jtendo/binpp", branch: "master"},
|
||||
{:pkt, github: "msantos/pkt", ref: "3afb196"}]
|
||||
{:pkt, github: "msantos/pkt", ref: "3afb196", only: :test, override: true},
|
||||
{:epcap, github: "msantos/epcap", branch: "master", only: :test}]
|
||||
end
|
||||
end
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue