Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
converse.js
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
converse.js
Commits
2b3d6d55
Commit
2b3d6d55
authored
Mar 20, 2013
by
Michal Čihař
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Test all current translation backends
parent
43fd711f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
0 deletions
+15
-0
trans/tests/machine.py
trans/tests/machine.py
+15
-0
No files found.
trans/tests/machine.py
View file @
2b3d6d55
...
...
@@ -20,6 +20,9 @@
from
django.test
import
TestCase
from
trans.machine.dummy
import
DummyTranslation
from
trans.machine.glosbe
import
GlosbeTranslation
from
trans.machine.mymemory
import
MyMemoryTranslation
from
trans.machine.opentran
import
OpenTranTranslation
class
MachineTranslationTest
(
TestCase
):
...
...
@@ -41,3 +44,15 @@ class MachineTranslationTest(TestCase):
machine_translation
.
translate
(
'cs'
,
'Hello, world!'
),
[]
)
def
test_glosbe
(
self
):
machine
=
GlosbeTranslation
()
self
.
assertGreater
(
len
(
machine
.
translate
(
'cs'
,
'world'
)),
0
)
def
test_mymemory
(
self
):
machine
=
MyMemoryTranslation
()
self
.
assertGreater
(
len
(
machine
.
translate
(
'cs'
,
'world'
)),
0
)
def
test_opentran
(
self
):
machine
=
OpenTranTranslation
()
self
.
assertGreater
(
len
(
machine
.
translate
(
'cs'
,
'world'
)),
0
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment