()
| 55 | |
| 56 | |
| 57 | def test_full_msg_with_cjk(): |
| 58 | ret = _full_msg( |
| 59 | start='啊あ아', |
| 60 | end_msg='end', |
| 61 | end_color='', |
| 62 | use_color=False, |
| 63 | cols=15, |
| 64 | ) |
| 65 | # 5 dots: 15 - 6 - 3 - 1 |
| 66 | assert ret == '啊あ아.....end\n' |
| 67 | |
| 68 | |
| 69 | def test_full_msg_with_color(): |
nothing calls this directly
no test coverage detected