Adds test case for #6846. (#8729)

This commit is contained in:
Dominik Picheta
2018-08-23 17:38:33 +01:00
committed by Andreas Rumpf
parent 8aae5c9385
commit 07e1da8342

16
tests/async/t6846.nim Normal file
View File

@@ -0,0 +1,16 @@
discard """
exitcode: 0
output: "hello world"
disabled: windows
"""
import asyncdispatch
import asyncfile
import times
var asyncStdout = 1.AsyncFD.newAsyncFile()
proc doStuff: Future[void] {.async.} =
await asyncStdout.write "hello world\n"
let fut = doStuff()
doAssert fut.finished, "Poll is needed unnecessarily. See #6846."