From b1bd4f211145d948c20e0d21a36bdec3716cc4b0 Mon Sep 17 00:00:00 2001 From: tompng Date: Mon, 16 Sep 2024 23:55:08 +0900 Subject: [PATCH] Update README `close` does not have to be called before assert_screen. assert_screen accepts Regexp. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index aabd4ea..4590c54 100644 --- a/README.md +++ b/README.md @@ -99,11 +99,11 @@ Writes `str` like inputting by a keyboard to the started terminal. ### `close` -Closes the terminal to take the internal rendering result. You must call it before call assertions. +Closes the terminal and terminates the process. ### `assert_screen(expected_lines)` -Asserts the rendering result of the terminal with `expected_lines` that should be an `Array` or a `String` of lines. The `Array` contains blank lines and doesn't contain newline characters, and the `String` contains newline characters at end of each line and doesn't contain continuous last blank lines. +Asserts the rendering result of the terminal with `expected_lines` that should be an `Array`, `Regexp`, or a `String` of lines. The `Array` contains blank lines and doesn't contain newline characters, and the `String` contains newline characters at end of each line and doesn't contain continuous last blank lines. ## License