mirror of
https://github.com/msgpack/msgpack-python.git
synced 2026-02-07 02:09:59 +00:00
erlang: modified wrong testcase.
This commit is contained in:
parent
ba4a971bfa
commit
a4258505a9
1 changed files with 4 additions and 3 deletions
|
|
@ -282,10 +282,11 @@ basic_test()->
|
|||
port_test()->
|
||||
Port = open_port({spawn, "ruby ../test/crosslang.rb"}, [binary]),
|
||||
Tests = test_data(),
|
||||
{[Tests],<<>>} = msgpack:unpack(msgpack:pack([Tests])),
|
||||
true = port_command(Port, msgpack:pack(Tests) ),
|
||||
S=msgpack:pack([Tests]),
|
||||
true = port_command(Port, S),
|
||||
{[Tests],<<>>} = msgpack:unpack(S),
|
||||
receive
|
||||
{Port, {data, Data}}-> {Tests, <<>>}=msgpack:unpack(Data)
|
||||
{Port, {data, Data}}-> {[Tests], <<>>}=msgpack:unpack(Data)
|
||||
after 1024-> ?assert(false) end,
|
||||
port_close(Port).
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue