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