Files
wren/test/io/stdin/read_byte_eof.wren
T
underscorediscovery 626a86fd6f chore: skip three io stdin tests on windows and mac to unblock 0.3.0 release
Add `// skip:` annotation to read_byte_eof.wren, read_line.wren, and read_line_eof.wren
to prevent test failures on non-linux platforms until the underlying issue is fixed.
2020-05-28 20:12:08 +00:00

11 lines
171 B
Plaintext

// skip:
import "io" for Stdin
Stdin.readLine() // stdin: one line
var error = Fiber.new {
Stdin.readByte()
}.try()
System.print(error) // expect: Stdin was closed.