Output: plain without headers
()
| 24 | |
| 25 | |
| 26 | def test_plain_headerless(): |
| 27 | "Output: plain without headers" |
| 28 | expected = "\n".join(["spam 41.9999", "eggs 451"]) |
| 29 | result = tabulate(_test_table, tablefmt="plain") |
| 30 | assert_equal(expected, result) |
| 31 | |
| 32 | |
| 33 | def test_plain_multiline_headerless(): |
nothing calls this directly
no test coverage detected