本文整理汇总了Python中menu.Menu.get_options方法的典型用法代码示例。如果您正苦于以下问题:Python Menu.get_options方法的具体用法?Python Menu.get_options怎么用?Python Menu.get_options使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类menu.Menu
的用法示例。
在下文中一共展示了Menu.get_options方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_single_options_single_digits
# 需要导入模块: from menu import Menu [as 别名]
# 或者: from menu.Menu import get_options [as 别名]
def test_single_options_single_digits(self):
m = Menu(test_contacts)
assert len(m.get_options('2')) == 1
assert m.get_options('2')[0]['number'] == '1'
assert len(m.get_options('3')) == 1
assert m.get_options('3')[0]['number'] == '2'
示例2: phonebook
# 需要导入模块: from menu import Menu [as 别名]
# 或者: from menu.Menu import get_options [as 别名]
def phonebook():
response = twilio.twiml.Response()
digits = request.values.get('Digits', None)
menu = Menu(contacts)
options = menu.get_options(digits)
if len(options) == 0:
log.debug("no numbers found")
response.say("no numbers found")
# how do redirect without duplication of code?
elif len(options) == 1:
log.debug("calling %s" % (options[0]['name']))
response.say("calling " + options[0]['name'])
response.dial(options[0]['number'])
else:
log.debug("no numbers found")
response.say("more than 1 number found")
# do nothing for now, could offer a menu later
return str(response)
示例3: test_multi_options_multi_digits
# 需要导入模块: from menu import Menu [as 别名]
# 或者: from menu.Menu import get_options [as 别名]
def test_multi_options_multi_digits(self):
m = Menu(test_contacts)
for name in ['tum', 'tun', 'uuo']:
self.assertEqual(len(m.get_options(ntd(name))), 3)
示例4: test_single_options_multi_digits
# 需要导入模块: from menu import Menu [as 别名]
# 或者: from menu.Menu import get_options [as 别名]
def test_single_options_multi_digits(self):
m = Menu(test_contacts)
for name in ['matt', 'dad', 'da', 'ad']:
self.assertEqual(len(m.get_options(ntd(name))), 1)
self.assertEqual(test_contacts[name], m.get_options(ntd(name))[0]['number'])
示例5: test_no_digits
# 需要导入模块: from menu import Menu [as 别名]
# 或者: from menu.Menu import get_options [as 别名]
def test_no_digits(self):
m = Menu(test_contacts)
self.assertEqual(m.get_options(''), [])
示例6: test_bad_digits
# 需要导入模块: from menu import Menu [as 别名]
# 或者: from menu.Menu import get_options [as 别名]
def test_bad_digits(self):
m = Menu(test_contacts)
with self.assertRaises(AssertionError):
m.get_options('xx')