()
| 367 | # |
| 368 | @pytest.fixture |
| 369 | def histitem(): |
| 370 | from cmd2.history import ( |
| 371 | HistoryItem, |
| 372 | ) |
| 373 | from cmd2.parsing import ( |
| 374 | Statement, |
| 375 | ) |
| 376 | |
| 377 | statement = Statement( |
| 378 | "history", |
| 379 | raw="help history", |
| 380 | command="help", |
| 381 | ) |
| 382 | return HistoryItem(statement) |
| 383 | |
| 384 | |
| 385 | @pytest.fixture |
nothing calls this directly
no test coverage detected
searching dependent graphs…