Skip to content

Commit

Permalink
Create unsent messages in the tests
Browse files Browse the repository at this point in the history
See: #166
  • Loading branch information
JamesWrigley committed May 17, 2024
1 parent 9ec590e commit 3ebf73f
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,10 @@ end
@test Base.strides(msg) == (1,)

# Test similar() and copy() fixes in https://github.com/JuliaInterop/ZMQ.jl/pull/165
# Note that we have to send this message to work around
# https://github.com/JuliaInterop/ZMQ.jl/issues/166
@test similar(msg, UInt8, 12) isa Vector{UInt8}
@test copy(msg) == codeunits("test request")
ZMQ.send(s2, msg)

ZMQ.send(s2, Message("test request"))
@test unsafe_string(ZMQ.recv(s1)) == "test request"
ZMQ.send(s1, Message("test response"))
@test unsafe_string(ZMQ.recv(s2)) == "test response"
Expand Down

0 comments on commit 3ebf73f

Please sign in to comment.