88
88
def test_trace_unicode(self):
89
89
"""Write Unicode to trace log"""
94
94
def test_trace_argument_unicode(self):
95
95
"""Write a Unicode argument to the trace log"""
96
96
mutter(u'the unicode character for benzene is %s', u'\N{BENZENE RING}')
100
100
def test_trace_argument_utf8(self):
101
101
"""Write a Unicode argument to the trace log"""
102
102
mutter(u'the unicode character for benzene is %s',
103
103
u'\N{BENZENE RING}'.encode('utf-8'))
107
107
def test_report_broken_pipe(self):