Beispiel #1
0
Datei: tests.py Projekt: webus/vk
 def test_stringify_3(self):
     self.assertEqual({1: u'стр,стр2'},
                      utils.stringify_values({1: [u'стр', u'стр2']}))
Beispiel #2
0
Datei: tests.py Projekt: webus/vk
 def test_stringify_2(self):
     self.assertEqual({1: u'str,стр2'},
                      utils.stringify_values({1: ['str', u'стр2']}))
Beispiel #3
0
Datei: tests.py Projekt: webus/vk
 def test_stringify(self):
     self.assertEqual({1: 'str,str2'},
                      utils.stringify_values({1: ['str', 'str2']}))
Beispiel #4
0
 def test_stringify_3(self):
     self.assertEqual({1: u'стр,стр2'}, utils.stringify_values({1: [u'стр', u'стр2']}))
Beispiel #5
0
 def test_stringify_2(self):
     self.assertEqual({1: u'str,стр2'}, utils.stringify_values({1: ['str', u'стр2']}))
Beispiel #6
0
 def test_stringify(self):
     self.assertEqual({1: 'str,str2'}, utils.stringify_values({1: ['str', 'str2']}))