コード例 #1
0
ファイル: test_validators.py プロジェクト: ziima/polint
 def test_msgctxt_both(self):
     first = POEntry(msgid="First", msgstr="Trans.", msgctxt="abbrev.")
     second = POEntry(msgid="First", msgstr="Translation", msgctxt="long")
     status = Status()
     status.step(first)
     status.step(second)
     self.assertTrue(sort_validator(status))
コード例 #2
0
ファイル: test_validators.py プロジェクト: ziima/polint
 def test_unsorted(self):
     first = POEntry(msgid="Second", msgstr="Translation")
     second = POEntry(msgid="First", msgstr="Translation")
     status = Status()
     status.step(first)
     status.step(second)
     self.assertFalse(sort_validator(status))
コード例 #3
0
ファイル: test_validators.py プロジェクト: tpazderka/polint
 def test_unsorted(self):
     first = POEntry(msgid="Second", msgstr="Translation")
     second = POEntry(msgid="First", msgstr="Translation")
     status = Status()
     status.step(first)
     status.step(second)
     self.assertFalse(sort_validator(status))
コード例 #4
0
 def test_msgctxt_both(self):
     first = POEntry(msgid="First", msgstr="Trans.", msgctxt="abbrev.")
     second = POEntry(msgid="First", msgstr="Translation", msgctxt="long")
     status = Status()
     status.step(first)
     status.step(second)
     self.assertTrue(sort_validator(status))
コード例 #5
0
ファイル: test_validators.py プロジェクト: ziima/polint
 def test_first_entry(self):
     entry = POEntry(msgid="Source", msgstr="Translation")
     status = Status()
     status.step(entry)
     self.assertTrue(sort_validator(status))
コード例 #6
0
ファイル: test_validators.py プロジェクト: tpazderka/polint
 def test_first_entry(self):
     entry = POEntry(msgid="Source", msgstr="Translation")
     status = Status()
     status.step(entry)
     self.assertTrue(sort_validator(status))