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
0615775a
Commit
0615775a
authored
Feb 15, 2016
by
Michal Čihař
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix passed parameters
Signed-off-by:
Michal Čihař
<
michal@cihar.com
>
parent
cd20cf9d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
weblate/trans/tests/test_utils.py
weblate/trans/tests/test_utils.py
+3
-0
No files found.
weblate/trans/tests/test_utils.py
View file @
0615775a
...
@@ -34,6 +34,7 @@ class LoadClassTest(TestCase):
...
@@ -34,6 +34,7 @@ class LoadClassTest(TestCase):
def
test_invalid_name
(
self
):
def
test_invalid_name
(
self
):
assertRaisesRegex
(
assertRaisesRegex
(
self
,
ImproperlyConfigured
,
ImproperlyConfigured
,
'Error importing class unittest in TEST: .*"'
'Error importing class unittest in TEST: .*"'
'(not enough|need more than)'
,
'(not enough|need more than)'
,
...
@@ -42,6 +43,7 @@ class LoadClassTest(TestCase):
...
@@ -42,6 +43,7 @@ class LoadClassTest(TestCase):
def
test_invalid_module
(
self
):
def
test_invalid_module
(
self
):
assertRaisesRegex
(
assertRaisesRegex
(
self
,
ImproperlyConfigured
,
ImproperlyConfigured
,
'weblate.trans.tests.missing in TEST: "'
'weblate.trans.tests.missing in TEST: "'
'No module named .*missing["
\
'
]'
,
'No module named .*missing["
\
'
]'
,
...
@@ -50,6 +52,7 @@ class LoadClassTest(TestCase):
...
@@ -50,6 +52,7 @@ class LoadClassTest(TestCase):
def
test_invalid_class
(
self
):
def
test_invalid_class
(
self
):
assertRaisesRegex
(
assertRaisesRegex
(
self
,
ImproperlyConfigured
,
ImproperlyConfigured
,
'"weblate.trans.tests.test_utils" does not define a "Foo" class'
,
'"weblate.trans.tests.test_utils" does not define a "Foo" class'
,
load_class
,
'weblate.trans.tests.test_utils.Foo'
,
'TEST'
load_class
,
'weblate.trans.tests.test_utils.Foo'
,
'TEST'
...
...
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