Commit c869ac22 authored by Weblate's avatar Weblate

Merge remote-tracking branch 'origin/master'

parents 38ed51d6 b063e947
......@@ -19,6 +19,7 @@
#
from weblate.trans.tests.test_format_checks import *
from weblate.trans.tests.test_chars_checks import *
from weblate.trans.tests.test_same_checks import *
from weblate.trans.tests.test_consistency_checks import *
from weblate.trans.tests.test_markup_checks import *
from weblate.trans.tests.test_models import *
......
......@@ -24,57 +24,11 @@ Tests for quality checks.
from django.test import TestCase
from weblate.trans.checks.consistency import (
SameCheck,
PluralsCheck,
)
from weblate.trans.tests.test_checks import Language
class SameCheckTest(TestCase):
def setUp(self):
self.check = SameCheck()
def test_not_same(self):
self.assertFalse(self.check.check_single(
'source',
'translation',
'',
Language('cs'),
None,
0
))
def test_same(self):
self.assertTrue(self.check.check_single(
'source',
'source',
'',
Language('cs'),
None,
0
))
def test_same_english(self):
self.assertFalse(self.check.check_single(
'source',
'source',
'',
Language('en'),
None,
0
))
def test_same_format(self):
self.assertFalse(self.check.check_single(
'%(source)s',
'%(source)s',
'python-format',
Language('cs'),
None,
0
))
class PluralsCheckTest(TestCase):
def setUp(self):
self.check = PluralsCheck()
......
# -*- coding: utf-8 -*-
#
# Copyright © 2012 - 2013 Michal Čihař <michal@cihar.com>
#
# This file is part of Weblate <http://weblate.org/>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
"""
Tests for quality checks.
"""
from django.test import TestCase
from weblate.trans.checks.same import (
SameCheck,
)
from weblate.trans.tests.test_checks import Language
class SameCheckTest(TestCase):
def setUp(self):
self.check = SameCheck()
def test_not_same(self):
self.assertFalse(self.check.check_single(
'source',
'translation',
'',
Language('cs'),
None,
0
))
def test_same(self):
self.assertTrue(self.check.check_single(
'source',
'source',
'',
Language('cs'),
None,
0
))
def test_same_english(self):
self.assertFalse(self.check.check_single(
'source',
'source',
'',
Language('en'),
None,
0
))
def test_same_format(self):
self.assertFalse(self.check.check_single(
'%(source)s',
'%(source)s',
'python-format',
Language('cs'),
None,
0
))
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment