def test_saveAsText(self):
     """ `HashDictionary` can be saved as textfile. """
     tmpf = get_tmpfile('dict_test.txt')
     # use some utf8 strings, to test encoding serialization
     d = HashDictionary(['žloťoučký koníček'.split(), 'Малйж обльйквюэ ат эжт'.split()])
     d.save_as_text(tmpf)
     self.assertTrue(os.path.exists(tmpf))
Beispiel #2
0
 def test_saveAsText(self):
     """ `HashDictionary` can be saved as textfile. """
     tmpf = get_tmpfile('dict_test.txt')
     # use some utf8 strings, to test encoding serialization
     d = HashDictionary(
         ['žloťoučký koníček'.split(), 'Малйж обльйквюэ ат эжт'.split()])
     d.save_as_text(tmpf)
     self.assertTrue(os.path.exists(tmpf))