summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2014-06-14 09:35:59 +0000
committerGerrit Code Review <review@openstack.org>2014-06-14 09:35:59 +0000
commit4378c26b8eed103f70b94e2b09ec43de5b59af8c (patch)
treef8f188d285f25dddb1a8894d5c37c6b352999147
parent6fecd14c0528b00fdd0e8e59f247d751edf6a290 (diff)
parenta37ef609944c80e9acbf9c6052bbaf1cc6032e04 (diff)
downloadcliff-4378c26b8eed103f70b94e2b09ec43de5b59af8c.tar.gz
Merge "Fix wrong method name assert_called_once"
-rw-r--r--cliff/tests/test_app.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/cliff/tests/test_app.py b/cliff/tests/test_app.py
index e3bc12e..fc1f4ae 100644
--- a/cliff/tests/test_app.py
+++ b/cliff/tests/test_app.py
@@ -106,7 +106,7 @@ def test_clean_up_error_debug():
else:
assert False, 'Should have had an exception'
- app.clean_up.assert_called_once()
+ assert app.clean_up.called
call_args = app.clean_up.call_args_list[0]
assert call_args == mock.call(mock.ANY, 1, mock.ANY)
args, kwargs = call_args
@@ -123,7 +123,7 @@ def test_error_handling_clean_up_raises_exception():
)
app.run(['error'])
- app.clean_up.assert_called_once()
+ assert app.clean_up.called
call_args = app.clean_up.call_args_list[0]
assert call_args == mock.call(mock.ANY, 1, mock.ANY)
args, kwargs = call_args
@@ -150,7 +150,7 @@ def test_error_handling_clean_up_raises_exception_debug():
else:
assert False, 'Should have had an exception'
- app.clean_up.assert_called_once()
+ assert app.clean_up.called
call_args = app.clean_up.call_args_list[0]
assert call_args == mock.call(mock.ANY, 1, mock.ANY)
args, kwargs = call_args
@@ -167,7 +167,7 @@ def test_normal_clean_up_raises_exception():
)
app.run(['mock'])
- app.clean_up.assert_called_once()
+ assert app.clean_up.called
call_args = app.clean_up.call_args_list[0]
assert call_args == mock.call(mock.ANY, 0, None)
@@ -181,7 +181,7 @@ def test_normal_clean_up_raises_exception_debug():
)
app.run(['--debug', 'mock'])
- app.clean_up.assert_called_once()
+ assert app.clean_up.called
call_args = app.clean_up.call_args_list[0]
assert call_args == mock.call(mock.ANY, 0, None)