()
| 43 | |
| 44 | |
| 45 | def test_full_msg(): |
| 46 | ret = _full_msg( |
| 47 | start='start', |
| 48 | end_msg='end', |
| 49 | end_color='', |
| 50 | use_color=False, |
| 51 | cols=15, |
| 52 | ) |
| 53 | # 6 dots: 15 - 5 - 3 - 1 |
| 54 | assert ret == 'start......end\n' |
| 55 | |
| 56 | |
| 57 | def test_full_msg_with_cjk(): |
nothing calls this directly
no test coverage detected