Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
`close` does not have to be called before assert_screen.
assert_screen accepts Regexp.
  • Loading branch information
tompng committed Sep 16, 2024
1 parent 3525535 commit b1bd4f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit b1bd4f2

Please sign in to comment.