()
| 347 | |
| 348 | |
| 349 | def test_asciitable(): |
| 350 | res = asciitable( |
| 351 | ["fruit", "color"], |
| 352 | [("apple", "red"), ("banana", "yellow"), ("tomato", "red"), ("pear", "green")], |
| 353 | ) |
| 354 | assert res == ( |
| 355 | "+--------+--------+\n" |
| 356 | "| fruit | color |\n" |
| 357 | "+--------+--------+\n" |
| 358 | "| apple | red |\n" |
| 359 | "| banana | yellow |\n" |
| 360 | "| tomato | red |\n" |
| 361 | "| pear | green |\n" |
| 362 | "+--------+--------+" |
| 363 | ) |
| 364 | |
| 365 | |
| 366 | def test_SerializableLock(): |
nothing calls this directly
no test coverage detected