本文整理汇总了Python中Vintageous.run.ViRunCommand.do_post_action方法的典型用法代码示例。如果您正苦于以下问题:Python ViRunCommand.do_post_action方法的具体用法?Python ViRunCommand.do_post_action怎么用?Python ViRunCommand.do_post_action使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Vintageous.run.ViRunCommand
的用法示例。
在下文中一共展示了ViRunCommand.do_post_action方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: Test_ViRunCommand
# 需要导入模块: from Vintageous.run import ViRunCommand [as 别名]
# 或者: from Vintageous.run.ViRunCommand import do_post_action [as 别名]
class Test_ViRunCommand(unittest.TestCase):
def setUp(self):
self.vi_run = ViRunCommand(mock.Mock())
def testDoPostAction(self):
vi_cmd_data = {'post_action': ['foo', {'bar': 1}]}
with mock.patch.object(self.vi_run.view, 'run_command') as rc:
self.vi_run.do_post_action(vi_cmd_data)
rc.assert_called_once_with('foo', {'bar': 1})
def testDontDoPostActionIfUndefined(self):
vi_cmd_data = {'post_action': None}
with mock.patch.object(self.vi_run.view, 'run_command') as rc:
self.vi_run.do_post_action(vi_cmd_data)
self.assertEqual(rc.call_count, 0)
def testAddJumpToList(self):
vi_cmd_data = {'is_jump': True}
with mock.patch.object(self.vi_run.view, 'window') as rc:
x = mock.Mock()
rc.return_value = x
self.vi_run.add_to_jump_list(vi_cmd_data)
self.assertEqual(rc.call_count, 1)
x.run_command.assert_called_once_with('vi_add_to_jump_list')
def testDontAddJumpToListIfNotRequested(self):
vi_cmd_data = {'is_jump': False}
with mock.patch.object(self.vi_run.view, 'window') as rc:
x = mock.Mock()
rc.return_value = x
self.vi_run.add_to_jump_list(vi_cmd_data)
self.assertEqual(rc.call_count, 0)
self.assertEqual(x.run_command.call_count, 0)
@mock.patch('Vintageous.state.VintageState')
def testDebug(self, mocked_state):
x = mock.Mock()
x.settings.view = {'vintageous_verbose': True}
mocked_state.return_value = x
with mock.patch.object(builtins, 'print') as p:
self.vi_run.debug(['one', 'two'])
p.assert_called_once_with('Vintageous:', ['one', 'two'])