Example #1
0
    def test_upper(self):
        opt = app._build_options(u'a', {})
        self.assert_upper(u'a', opt['text'])

        opt = app._build_options(u'kb', {})
        self.assert_upper(u'kb', opt['text'])
Example #2
0
 def test_upper_cyrillic(self):
     opt = app._build_options(u'фп', {})
     self.assert_upper(u'фп', opt['text'])