本文整理汇总了Python中action.Action.title方法的典型用法代码示例。如果您正苦于以下问题:Python Action.title方法的具体用法?Python Action.title怎么用?Python Action.title使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类action.Action
的用法示例。
在下文中一共展示了Action.title方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_pin_full_example
# 需要导入模块: from action import Action [as 别名]
# 或者: from action.Action import title [as 别名]
def test_pin_full_example(self):
p = Pin()
action = Action()
action.launch_code = 13
action.title = 'Open in Watchapp'
action.type = 'openWatchApp'
self.assertDoesNotRaise(ValidationException, action.validate)
p.add_action(action)
reminder = Reminder()
reminder.time = '2015-08-04T20:00:00+00:00Z'
reminder.layout.backgroundColor = '#FFFFFF'
reminder.layout.body = 'Drama about a police unit...'
reminder.layout.foregroundColor = '#000000'
reminder.layout.largeIcon = 'system://images/TV_SHOW'
reminder.layout.smallIcon = 'system://images/TV_SHOW'
reminder.layout.tinyIcon = 'system://images/TV_SHOW'
reminder.layout.subtitle = 'New Tricks'
reminder.layout.title = 'Last Man Standing'
reminder.layout.type = 'genericReminder'
self.assertDoesNotRaise(ValidationException, reminder.validate)
p.add_reminder(reminder)
p.layout.backgroundColor = '#FFFFFF'
p.layout.foregroundColor = '#000000'
p.layout.tinyIcon = 'system://images/TV_SHOW'
p.layout.title = 'Last Man Standing'
p.layout.subtitle = 'New Tricks'
p.layout.type = 'genericPin'
p.layout.shortTitle = 'Last Man Standing'
p.layout.body = 'Drama about a police unit...'
p.layout.add_section('Series', 'New Tricks')
self.assertDoesNotRaise(ValidationException, p.layout.validate)
p.duration = 60
p.id = '101'
p.time = '2015-08-04T20:00:00+00:00Z'
self.assertDoesNotRaise(ValidationException, p.validate)
p.time = ''
self.assertRaises(ValidationException, p.validate)