()
| 79 | |
| 80 | |
| 81 | def test_full_msg_with_postfix(): |
| 82 | ret = _full_msg( |
| 83 | start='start', |
| 84 | postfix='post ', |
| 85 | end_msg='end', |
| 86 | end_color='', |
| 87 | use_color=False, |
| 88 | cols=20, |
| 89 | ) |
| 90 | # 6 dots: 20 - 5 - 5 - 3 - 1 |
| 91 | assert ret == 'start......post end\n' |
| 92 | |
| 93 | |
| 94 | def test_full_msg_postfix_not_colored(): |
nothing calls this directly
no test coverage detected