本文整理汇总了Python中recore.fsm.FSM.remaining方法的典型用法代码示例。如果您正苦于以下问题:Python FSM.remaining方法的具体用法?Python FSM.remaining怎么用?Python FSM.remaining使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类recore.fsm.FSM
的用法示例。
在下文中一共展示了FSM.remaining方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_dequeue_next_active_step
# 需要导入模块: from recore.fsm import FSM [as 别名]
# 或者: from recore.fsm.FSM import remaining [as 别名]
def test_dequeue_next_active_step(self):
"""The FSM can remove the next step and update Mongo with it"""
f = FSM(state_id)
f.remaining = ["Step 1", "Step 2"]
_update_state = {
'$set': {
'active_step': "Step 1",
'remaining_steps': ["Step 2"]
}
}
with mock.patch.object(f, 'update_state') as (
us):
f.dequeue_next_active_step()
us.assert_called_once_with(_update_state)
self.assertEqual(f.active, "Step 1")