本文整理汇总了Python中mu.modes.debugger.DebugMode.debug_on_line方法的典型用法代码示例。如果您正苦于以下问题:Python DebugMode.debug_on_line方法的具体用法?Python DebugMode.debug_on_line怎么用?Python DebugMode.debug_on_line使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类mu.modes.debugger.DebugMode
的用法示例。
在下文中一共展示了DebugMode.debug_on_line方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_debug_on_line_ignore_file
# 需要导入模块: from mu.modes.debugger import DebugMode [as 别名]
# 或者: from mu.modes.debugger.DebugMode import debug_on_line [as 别名]
def test_debug_on_line_ignore_file():
"""
If the filename is in the ignored bucket, do a return.
"""
editor = mock.MagicMock()
view = mock.MagicMock()
dm = DebugMode(editor, view)
dm.debugger = mock.MagicMock()
dm.debug_on_line('bdb.py', 100)
dm.debugger.do_return.assert_called_once_with()
示例2: test_debug_on_line
# 需要导入模块: from mu.modes.debugger import DebugMode [as 别名]
# 或者: from mu.modes.debugger.DebugMode import debug_on_line [as 别名]
def test_debug_on_line():
"""
Ensure the view is updated to the expected tab and the correct line is
selected therein.
"""
editor = mock.MagicMock()
view = mock.MagicMock()
dm = DebugMode(editor, view)
mock_tab = mock.MagicMock()
editor.get_tab.return_value = mock_tab
dm.debug_on_line('foo.py', 100)
view.current_tab.setSelection.assert_called_once_with(0, 0, 0, 0)
mock_tab.setSelection(99, 0, 100, 0)