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


Python TimesheetParser.detect_formatting方法代码示例

本文整理汇总了Python中taxi.timesheet.parser.TimesheetParser.detect_formatting方法的典型用法代码示例。如果您正苦于以下问题:Python TimesheetParser.detect_formatting方法的具体用法?Python TimesheetParser.detect_formatting怎么用?Python TimesheetParser.detect_formatting使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在taxi.timesheet.parser.TimesheetParser的用法示例。


在下文中一共展示了TimesheetParser.detect_formatting方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_formatting_space

# 需要导入模块: from taxi.timesheet.parser import TimesheetParser [as 别名]
# 或者: from taxi.timesheet.parser.TimesheetParser import detect_formatting [as 别名]
def test_formatting_space():
    formatting = TimesheetParser.detect_formatting('foobar 4 description')
    assert formatting['spacer'] == (' ', ' ')
开发者ID:ralf57,项目名称:taxi,代码行数:5,代码来源:test_parser.py

示例2: test_detect_formatting_space_tabs

# 需要导入模块: from taxi.timesheet.parser import TimesheetParser [as 别名]
# 或者: from taxi.timesheet.parser.TimesheetParser import detect_formatting [as 别名]
def test_detect_formatting_space_tabs():
    formatting = TimesheetParser.detect_formatting('foobar\t4 description')
    assert formatting['spacer'] == ('\t', ' ')
开发者ID:ralf57,项目名称:taxi,代码行数:5,代码来源:test_parser.py

示例3: test_detect_formatting_time_hours

# 需要导入模块: from taxi.timesheet.parser import TimesheetParser [as 别名]
# 或者: from taxi.timesheet.parser.TimesheetParser import detect_formatting [as 别名]
def test_detect_formatting_time_hours():
    formatting = TimesheetParser.detect_formatting('foobar 4 description')
    assert formatting['time_format'] == '%H%M'
开发者ID:ralf57,项目名称:taxi,代码行数:5,代码来源:test_parser.py

示例4: test_detect_formatting_time_format_separator

# 需要导入模块: from taxi.timesheet.parser import TimesheetParser [as 别名]
# 或者: from taxi.timesheet.parser.TimesheetParser import detect_formatting [as 别名]
def test_detect_formatting_time_format_separator():
    formatting = TimesheetParser.detect_formatting(
        'foobar 15:00-16:00 description'
    )
    assert formatting['time_format'] == '%H:%M'
开发者ID:ralf57,项目名称:taxi,代码行数:7,代码来源:test_parser.py

示例5: test_detect_formatting_padded_time_and_alias

# 需要导入模块: from taxi.timesheet.parser import TimesheetParser [as 别名]
# 或者: from taxi.timesheet.parser.TimesheetParser import detect_formatting [as 别名]
def test_detect_formatting_padded_time_and_alias():
    formatting = TimesheetParser.detect_formatting(
        'foobar  1500-1600    description'
    )
    assert formatting['width'] == (8, 13)
开发者ID:ralf57,项目名称:taxi,代码行数:7,代码来源:test_parser.py

示例6: test_detect_formatting_padded_time

# 需要导入模块: from taxi.timesheet.parser import TimesheetParser [as 别名]
# 或者: from taxi.timesheet.parser.TimesheetParser import detect_formatting [as 别名]
def test_detect_formatting_padded_time():
    formatting = TimesheetParser.detect_formatting(
        'foobar 1500-1600    description'
    )
    assert formatting['width'][1] == 13
开发者ID:ralf57,项目名称:taxi,代码行数:7,代码来源:test_parser.py

示例7: test_detect_formatting_padded_alias

# 需要导入模块: from taxi.timesheet.parser import TimesheetParser [as 别名]
# 或者: from taxi.timesheet.parser.TimesheetParser import detect_formatting [as 别名]
def test_detect_formatting_padded_alias():
    formatting = TimesheetParser.detect_formatting('foobar   4 description')
    assert formatting['width'][0] == 9
开发者ID:ralf57,项目名称:taxi,代码行数:5,代码来源:test_parser.py


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