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
55715238
Commit
55715238
authored
Oct 20, 2014
by
Michal Čihař
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix helper module name
Signed-off-by:
Michal Čihař
<
michal@cihar.com
>
parent
9e885539
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
6 additions
and
6 deletions
+6
-6
weblate/accounts/tests.py
weblate/accounts/tests.py
+1
-1
weblate/trans/tests/test_admin.py
weblate/trans/tests/test_admin.py
+1
-1
weblate/trans/tests/test_dictionary.py
weblate/trans/tests/test_dictionary.py
+1
-1
weblate/trans/tests/test_files.py
weblate/trans/tests/test_files.py
+1
-1
weblate/trans/tests/test_formats.py
weblate/trans/tests/test_formats.py
+1
-1
weblate/trans/tests/test_models.py
weblate/trans/tests/test_models.py
+1
-1
weblate/trans/tests/utils.py
weblate/trans/tests/utils.py
+0
-0
No files found.
weblate/accounts/tests.py
View file @
55715238
...
@@ -47,7 +47,7 @@ from weblate.accounts.captcha import (
...
@@ -47,7 +47,7 @@ from weblate.accounts.captcha import (
from
weblate.accounts.middleware
import
RequireLoginMiddleware
from
weblate.accounts.middleware
import
RequireLoginMiddleware
from
weblate.trans.tests.test_views
import
ViewTestCase
,
RegistrationTestMixin
from
weblate.trans.tests.test_views
import
ViewTestCase
,
RegistrationTestMixin
from
weblate.trans.tests.
test_util
import
get_test_file
from
weblate.trans.tests.
utils
import
get_test_file
from
weblate.trans.models.unitdata
import
Suggestion
,
Comment
from
weblate.trans.models.unitdata
import
Suggestion
,
Comment
from
weblate.lang.models
import
Language
from
weblate.lang.models
import
Language
from
weblate
import
appsettings
from
weblate
import
appsettings
...
...
weblate/trans/tests/test_admin.py
View file @
55715238
...
@@ -23,7 +23,7 @@ import weblate.trans.admin_views
...
@@ -23,7 +23,7 @@ import weblate.trans.admin_views
from
django.test
import
TestCase
from
django.test
import
TestCase
from
django.core.urlresolvers
import
reverse
from
django.core.urlresolvers
import
reverse
from
django.utils.unittest
import
SkipTest
from
django.utils.unittest
import
SkipTest
from
weblate.trans.tests.
test_util
import
get_test_file
from
weblate.trans.tests.
utils
import
get_test_file
from
weblate.trans.util
import
add_configuration_error
from
weblate.trans.util
import
add_configuration_error
import
tempfile
import
tempfile
import
shutil
import
shutil
...
...
weblate/trans/tests/test_dictionary.py
View file @
55715238
...
@@ -25,7 +25,7 @@ Tests for dictionary manipulations.
...
@@ -25,7 +25,7 @@ Tests for dictionary manipulations.
from
weblate.trans.tests.test_views
import
ViewTestCase
from
weblate.trans.tests.test_views
import
ViewTestCase
from
weblate.trans.models
import
Dictionary
from
weblate.trans.models
import
Dictionary
from
django.core.urlresolvers
import
reverse
from
django.core.urlresolvers
import
reverse
from
weblate.trans.tests.
test_util
import
get_test_file
from
weblate.trans.tests.
utils
import
get_test_file
TEST_TBX
=
get_test_file
(
'terms.tbx'
)
TEST_TBX
=
get_test_file
(
'terms.tbx'
)
TEST_CSV
=
get_test_file
(
'terms.csv'
)
TEST_CSV
=
get_test_file
(
'terms.csv'
)
...
...
weblate/trans/tests/test_files.py
View file @
55715238
...
@@ -24,7 +24,7 @@ Tests for import and export.
...
@@ -24,7 +24,7 @@ Tests for import and export.
from
weblate.trans.tests.test_views
import
ViewTestCase
from
weblate.trans.tests.test_views
import
ViewTestCase
from
django.core.urlresolvers
import
reverse
from
django.core.urlresolvers
import
reverse
from
weblate.trans.tests.
test_util
import
get_test_file
from
weblate.trans.tests.
utils
import
get_test_file
TEST_PO
=
get_test_file
(
'cs.po'
)
TEST_PO
=
get_test_file
(
'cs.po'
)
TEST_MO
=
get_test_file
(
'cs.mo'
)
TEST_MO
=
get_test_file
(
'cs.mo'
)
...
...
weblate/trans/tests/test_formats.py
View file @
55715238
...
@@ -25,7 +25,7 @@ from unittest import TestCase
...
@@ -25,7 +25,7 @@ from unittest import TestCase
from
weblate.trans.formats
import
(
from
weblate.trans.formats
import
(
AutoFormat
,
PoFormat
,
AndroidFormat
,
AutoFormat
,
PoFormat
,
AndroidFormat
,
)
)
from
weblate.trans.tests.
test_util
import
get_test_file
from
weblate.trans.tests.
utils
import
get_test_file
TEST_PO
=
get_test_file
(
'cs.po'
)
TEST_PO
=
get_test_file
(
'cs.po'
)
TEST_ANDROID
=
get_test_file
(
'strings.xml'
)
TEST_ANDROID
=
get_test_file
(
'strings.xml'
)
...
...
weblate/trans/tests/test_models.py
View file @
55715238
...
@@ -32,7 +32,7 @@ import os
...
@@ -32,7 +32,7 @@ import os
from
weblate.trans.models
import
Project
,
SubProject
,
Unit
,
WhiteboardMessage
from
weblate.trans.models
import
Project
,
SubProject
,
Unit
,
WhiteboardMessage
from
weblate.trans.models.source
import
Source
from
weblate.trans.models.source
import
Source
from
weblate
import
appsettings
from
weblate
import
appsettings
from
weblate.trans.tests.
test_util
import
get_test_file
from
weblate.trans.tests.
utils
import
get_test_file
from
weblate.trans.vcs
import
GitRepository
from
weblate.trans.vcs
import
GitRepository
REPOWEB_URL
=
\
REPOWEB_URL
=
\
...
...
weblate/trans/tests/
test_util
.py
→
weblate/trans/tests/
utils
.py
View file @
55715238
File moved
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