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