(parser)
| 457 | |
| 458 | |
| 459 | def test_single_line_format_blank(parser) -> None: |
| 460 | from cmd2.history import ( |
| 461 | single_line_format, |
| 462 | ) |
| 463 | |
| 464 | line = "" |
| 465 | statement = parser.parse(line) |
| 466 | assert single_line_format(statement) == line |
| 467 | |
| 468 | |
| 469 | def test_history_item_instantiate() -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…