Exemple #1
0
 def test_totalsourcewords(self):
     pofile = BytesIO(self.inputdata)
     stats = pocount.calcstats_old(pofile)
     assert stats['totalsourcewords'] == 6
Exemple #2
0
 def test_fuzzy(self):
     pofile = BytesIO(self.inputdata)
     stats = pocount.calcstats_old(pofile)
     assert stats['fuzzy'] == 1
Exemple #3
0
 def test_untranslatedsourcewords(self):
     pofile = BytesIO(self.inputdata)
     stats = pocount.calcstats_old(pofile)
     assert stats['untranslatedsourcewords'] == 2
Exemple #4
0
 def test_fuzzysourcewords(self):
     pofile = StringIO(self.inputdata)
     stats = pocount.calcstats_old(pofile)
     assert stats['fuzzysourcewords'] == 2
Exemple #5
0
 def test_translated(self):
     pofile = BytesIO(self.inputdata)
     stats = pocount.calcstats_old(pofile)
     assert stats['translated'] == 1
Exemple #6
0
 def test_untranslated(self):
     pofile = StringIO(self.inputdata)
     stats = pocount.calcstats_old(pofile)
     assert stats['untranslated'] == 1
Exemple #7
0
 def test_total(self):
     pofile = StringIO(self.inputdata)
     stats = pocount.calcstats_old(pofile)
     assert stats['total'] == 3
Exemple #8
0
 def test_totalsourcewords(self):
     pofile = StringIO.StringIO(self.inputdata)
     stats = pocount.calcstats_old(pofile)
     assert stats["totalsourcewords"] == 6
 def test_translatedsourcewords(self):
     pofile = StringIO.StringIO(self.inputdata)
     stats = pocount.calcstats_old(pofile)
     assert stats['translatedsourcewords'] == 2
Exemple #10
0
 def test_fuzzy(self):
     pofile = StringIO.StringIO(self.inputdata)
     stats = pocount.calcstats_old(pofile)
     assert stats["fuzzy"] == 1
Exemple #11
0
 def test_total(self):
     pofile = StringIO(self.inputdata)
     stats = pocount.calcstats_old(pofile)
     assert stats['total'] == 3
Exemple #12
0
 def test_untranslated(self):
     pofile = StringIO(self.inputdata)
     stats = pocount.calcstats_old(pofile)
     assert stats['untranslated'] == 1
Exemple #13
0
 def test_fuzzy(self):
     pofile = StringIO(self.inputdata)
     stats = pocount.calcstats_old(pofile)
     assert stats['fuzzy'] == 1
Exemple #14
0
 def test_translatedsourcewords(self):
     pofile = StringIO(self.inputdata)
     stats = pocount.calcstats_old(pofile)
     assert stats['translatedsourcewords'] == 2