Skip to content

Commit 2559a32

Browse files
add tests for prompt timeout
1 parent 497c4b4 commit 2559a32

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

test/misc.jl

+4
Original file line numberDiff line numberDiff line change
@@ -516,6 +516,10 @@ let buf = IOBuffer()
516516
@test Base.prompt(IOBuffer("\n"), buf, "baz", default="foobar") == "foobar"
517517
@test String(take!(buf)) == "baz [foobar]: "
518518
@test Base.prompt(IOBuffer("blah\n"), buf, "baz", default="foobar") == "blah"
519+
520+
# prompt timeout
521+
@test Base.prompt(devnull, buf, "baz", default="foobar", timeout = 1) == "foobar"
522+
@test String(take!(buf)) == "baz [foobar] timeout 1 second: timed out"
519523
end
520524

521525
# these tests are not in a test block so that they will compile separately

0 commit comments

Comments
 (0)