Test emoji width (should count as 2).
(self)
| 23 | assert calculate_display_width("") == 0 |
| 24 | |
| 25 | def test_emoji(self): |
| 26 | """Test emoji width (should count as 2).""" |
| 27 | assert calculate_display_width("🤖") == 2 |
| 28 | assert calculate_display_width("💭") == 2 |
| 29 | assert calculate_display_width("🤖 Agent") == 8 # 2 + 1 + 5 |
| 30 | |
| 31 | def test_chinese_characters(self): |
| 32 | """Test Chinese characters (each counts as 2).""" |
nothing calls this directly
no test coverage detected