当前位置: 首页>>代码示例>>Python>>正文


Python Menu.get_options方法代码示例

本文整理汇总了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'
开发者ID:mattvenn,项目名称:python,代码行数:9,代码来源:test_menu.py

示例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)
开发者ID:mattvenn,项目名称:python,代码行数:20,代码来源:voip.py

示例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)
开发者ID:mattvenn,项目名称:python,代码行数:7,代码来源:test_menu.py

示例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'])
开发者ID:mattvenn,项目名称:python,代码行数:8,代码来源:test_menu.py

示例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(''), [])
开发者ID:mattvenn,项目名称:python,代码行数:5,代码来源:test_menu.py

示例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')
开发者ID:mattvenn,项目名称:python,代码行数:6,代码来源:test_menu.py


注:本文中的menu.Menu.get_options方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。