Beispiel #1
0
 def test_totalsourcewords(self):
     pofile = BytesIO(self.inputdata)
     stats = pocount.calcstats(pofile)
     assert stats["totalsourcewords"] == 6
Beispiel #2
0
 def test_untranslatedsourcewords(self):
     pofile = BytesIO(self.inputdata)
     stats = pocount.calcstats(pofile)
     assert stats["untranslatedsourcewords"] == 2
Beispiel #3
0
 def test_fuzzy(self):
     pofile = BytesIO(self.inputdata)
     stats = pocount.calcstats(pofile)
     assert stats["fuzzy"] == 1
Beispiel #4
0
 def test_total(self):
     pofile = BytesIO(self.inputdata)
     stats = pocount.calcstats(pofile)
     assert stats["total"] == 3
Beispiel #5
0
 def test_translated(self):
     pofile = BytesIO(self.inputdata)
     stats = pocount.calcstats(pofile)
     assert stats["translated"] == 1