Skip to content

Commit 67a4885

Browse files
committed
Add failing test case for unicode command in PY2
1 parent ec96e26 commit 67a4885

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/test_common.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,10 @@ def test_tmux_cmd_raises_on_not_found():
160160
tmux_cmd('-V')
161161

162162

163+
def test_tmux_cmd_unicode():
164+
tmux_cmd('has-session', 'юникод')
165+
166+
163167
@pytest.mark.parametrize("session_name,raises,exc_msg_regex", [
164168
('', True, 'may not be empty'),
165169
(None, True, 'may not be empty'),

0 commit comments

Comments
 (0)