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