本文整理汇总了Python中turses.models.Timeline类的典型用法代码示例。如果您正苦于以下问题:Python Timeline类的具体用法?Python Timeline怎么用?Python Timeline使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Timeline类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_update_with_no_args_extra_kwargs
def test_update_with_no_args_extra_kwargs(self):
mock = MagicMock(name='update')
timeline = Timeline(update_function=mock,)
extra_kwargs = {'python': 'rocks'}
timeline.update_with_extra_kwargs(**extra_kwargs)
mock.assert_called_once_with(**extra_kwargs)
示例2: test_update_with_no_args
def test_update_with_no_args(self):
mock = MagicMock(name='update')
timeline = Timeline(update_function=mock,)
timeline.update()
mock.assert_called_once_with()
示例3: test_update_with_kwargs
def test_update_with_kwargs(self):
mock = MagicMock(name='update')
kwargs = {'text': '#python', 'action': 'search'}
timeline = Timeline(update_function=mock,
update_function_kwargs=kwargs)
timeline.update()
mock.assert_called_once_with(**kwargs)
示例4: test_update_with_one_arg_extra_kwargs
def test_update_with_one_arg_extra_kwargs(self):
mock = MagicMock(name='update')
arg = '#python'
timeline = Timeline(update_function=mock, update_function_args=arg)
extra_kwargs = {'python': 'rocks'}
timeline.update_with_extra_kwargs(**extra_kwargs)
mock.assert_called_once_with(arg, **extra_kwargs)
示例5: test_update_with_one_arg
def test_update_with_one_arg(self):
mock = MagicMock(name='update')
arg = '#python'
timeline = Timeline(update_function=mock,
update_function_args=arg)
timeline.update()
mock.assert_called_once_with(arg)
示例6: test_update_with_multiple_args
def test_update_with_multiple_args(self):
mock = MagicMock(name='update')
args = '#python', '#mock'
timeline = Timeline(update_function=mock,
update_function_args=args)
timeline.update()
args = list(args)
mock.assert_called_once_with(*args)
示例7: test_update_with_multiple_args_extra_kwargs
def test_update_with_multiple_args_extra_kwargs(self):
mock = MagicMock(name='update')
args = ('#python', '#mock')
timeline = Timeline(update_function=mock,
update_function_args=args)
extra_kwargs = {'python': 'rocks'}
timeline.update_with_extra_kwargs(**extra_kwargs)
args = list(args)
mock.assert_called_once_with(*args, **extra_kwargs)
示例8: test_update_with_kwargs_extra_kwargs
def test_update_with_kwargs_extra_kwargs(self):
mock = MagicMock(name='update')
kwargs = {'text': '#python', 'action': 'search'}
timeline = Timeline(update_function=mock,
update_function_kwargs=kwargs)
extra_kwargs = {'text': 'rocks'}
timeline.update_with_extra_kwargs(**extra_kwargs)
args = kwargs.copy()
args.update(extra_kwargs)
mock.assert_called_once_with(**args)
示例9: test_statuses_ordered_reversely_by_date
def test_statuses_ordered_reversely_by_date(self):
old_status = create_status(created_at=datetime(1988, 12, 19))
new_status = create_status(id=2)
# ordered
self.timeline = Timeline(statuses=[new_status, old_status])
self.assertEqual(self.timeline[0], new_status)
self.assertEqual(self.timeline[1], old_status)
# unordered
self.timeline = Timeline(statuses=[old_status, new_status])
self.assertEqual(self.timeline[0], new_status)
self.assertEqual(self.timeline[1], old_status)
示例10: test_update_with_args_and_kwargs
def test_update_with_args_and_kwargs(self):
mock = MagicMock(name='update')
args = 'twitter', 42
kwargs = {'text': '#python', 'action': 'search'}
update_args = list(args)
update_args.append(kwargs)
timeline = Timeline(update_function=mock,
update_function_args=args,
update_function_kwargs=kwargs)
timeline.update()
args = list(args)
mock.assert_called_once_with(*args, **kwargs)
示例11: test_update_with_args_and_kwargs_extra_kwargs
def test_update_with_args_and_kwargs_extra_kwargs(self):
mock = MagicMock(name='update')
args = 'twitter', 42
kwargs = {'text': '#python', 'action': 'search'}
extra_kwargs = {'text': 'rocks'}
timeline = Timeline(update_function=mock,
update_function_args=args,
update_function_kwargs=kwargs)
timeline.update(**extra_kwargs)
args = list(args)
kwargs = kwargs.copy()
kwargs.update(extra_kwargs)
mock.assert_called_once_with(*args, **kwargs)
示例12: append_timeline
def append_timeline(self,
name,
update_function,
update_args=None,
update_kwargs=None):
"""
Given a name, function to update a timeline and optionally
arguments to the update function, it creates the timeline and
appends it to `timelines`.
"""
timeline = Timeline(name=name,
update_function=update_function,
update_function_args=update_args,
update_function_kwargs=update_kwargs)
timeline.update()
timeline.activate_first()
self.timelines.append_timeline(timeline)
示例13: test_active_index_is_0_when_creating_timeline_with_statuses
def test_active_index_is_0_when_creating_timeline_with_statuses(self):
status = create_status()
self.timeline = Timeline(statuses=[status])
self.assertEqual(self.timeline.active_index, 0)
示例14: setUp
def setUp(self):
self.timeline = Timeline()
self.assert_null_index()
示例15: setUp
def setUp(self):
self.timeline = Timeline()
self.timeline.clear()
self.assertEqual(len(self.timeline), 0)
self.assertEqual(self.timeline.active_index, ActiveList.NULL_INDEX)