~registry/neutron/github

Viewing all changes in revision 3685.4.1.

  • Committer: Jacek Swiderski
  • Date: 2014-10-13 10:36:49 UTC
  • mto: This revision was merged to the branch mainline in revision 3726.
  • Revision ID: git-v1:e40c2ed58ce998fc5aba83ffae8ebefec9403c3b
mock.assert_called_once() is not a valid method

mock.assert_called_once() is a no-op that tests nothing. Instead
mock.assert_called_once_with() should be used (or use
assertEqual(1, mock_obj.call_count) if you don't want to check
parameters).

Borrowed HACKING rule from Davanum Srinivas's nova patch to
prevent it from appearing again.

Change-Id: Idac1d3c89c07e13c9a209663f4e557fcb7547821
Closes-Bug: #1365751
Closes-Bug: #1300265

expand all expand all

Show diffs side-by-side

added added

removed removed

Lines of Context: