mirror of
https://github.com/edgurgel/httparrot
synced 2025-04-06 00:32:34 -04:00
Update to Elixir 0.12.3
This commit is contained in:
parent
7bb41514b9
commit
8cc78f1a4d
3 changed files with 3 additions and 3 deletions
|
@ -10,6 +10,6 @@ script: mix test --no-start
|
||||||
install: mix deps.get
|
install: mix deps.get
|
||||||
before_install:
|
before_install:
|
||||||
- mkdir -p vendor/elixir
|
- mkdir -p vendor/elixir
|
||||||
- wget -q https://github.com/elixir-lang/elixir/releases/download/v0.12.1/v0.12.1.zip && unzip -qq v0.12.1.zip -d vendor/elixir
|
- wget -q https://github.com/elixir-lang/elixir/releases/download/v0.12.3/v0.12.3.zip && unzip -qq v0.12.3.zip -d vendor/elixir
|
||||||
- export PATH="$PATH:$PWD/vendor/elixir/bin"
|
- export PATH="$PATH:$PWD/vendor/elixir/bin"
|
||||||
- export MIX_ENV=test
|
- export MIX_ENV=test
|
||||||
|
|
2
mix.exs
2
mix.exs
|
@ -5,7 +5,7 @@ defmodule Httparrot.Mixfile do
|
||||||
[ app: :httparrot,
|
[ app: :httparrot,
|
||||||
version: "0.0.2",
|
version: "0.0.2",
|
||||||
name: "HTTParrot",
|
name: "HTTParrot",
|
||||||
elixir: "~> 0.11.2 or ~> 0.12.0",
|
elixir: "~> 0.12.3",
|
||||||
deps: deps(Mix.env) ]
|
deps: deps(Mix.env) ]
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -55,7 +55,7 @@ defmodule HTTParrot.StreamHandlerTest do
|
||||||
assert {{:chunked, func}, :req2, nil} = get_json(:req1, 2)
|
assert {{:chunked, func}, :req2, nil} = get_json(:req1, 2)
|
||||||
assert is_function(func)
|
assert is_function(func)
|
||||||
|
|
||||||
send_func = fn(body) -> self <- {:chunk, body} end
|
send_func = fn(body) -> send(self, {:chunk, body}) end
|
||||||
func.(send_func)
|
func.(send_func)
|
||||||
|
|
||||||
assert_receive {:chunk, :json1}
|
assert_receive {:chunk, :json1}
|
||||||
|
|
Loading…
Add table
Reference in a new issue