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


Python ReportBuilder.start_block方法代码示例

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


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

示例1: test_multiple_visits

# 需要导入模块: from report_builder import ReportBuilder [as 别名]
# 或者: from report_builder.ReportBuilder import start_block [as 别名]
    def test_multiple_visits(self):
        # SETUP
        expected_report = """\
x = 'first'    | x = 'second' 
y = 'continue' | """
        
        # EXEC
        builder = ReportBuilder()
        builder.start_block(1, 2)
        builder.assign(name='x', value='first', line_number=1)
        builder.assign(name='y', value='continue', line_number=2)
        builder.start_block(1, 2)
        builder.assign(name='x', value='second', line_number=1)
        report = builder.report()
        
        # VERIFY
        self.assertEqual(expected_report.splitlines(), report.splitlines())
开发者ID:Amirus,项目名称:live-py-plugin,代码行数:19,代码来源:report_builder_test.py

示例2: test_separate_scopes

# 需要导入模块: from report_builder import ReportBuilder [as 别名]
# 或者: from report_builder.ReportBuilder import start_block [as 别名]
    def test_separate_scopes(self):
        # SETUP
        expected_report = """\
x = 'child' | x = 'child again' 

y = 'main' """
        
        # EXEC
        builder = ReportBuilder()
        builder.assign(name='y', value='main', line_number=3)
        builder.start_block(1, 1)
        builder.assign(name='x', value='child', line_number=1)
        builder.start_block(1, 1)
        builder.assign(name='x', value='child again', line_number=1)
        report = builder.report()
        
        # VERIFY
        self.assertEqual(expected_report.splitlines(), report.splitlines())
开发者ID:Amirus,项目名称:live-py-plugin,代码行数:20,代码来源:report_builder_test.py

示例3: test_nested_blocks

# 需要导入模块: from report_builder import ReportBuilder [as 别名]
# 或者: from report_builder.ReportBuilder import start_block [as 别名]
    def test_nested_blocks(self):
        # SETUP
        expected_report = """\
x = 'first' | x = 'second' 
            | y = 1 | y = 2 """
        
        # EXEC
        builder = ReportBuilder()
        builder.start_block(1, 2)
        builder.assign(name='x', value='first', line_number=1)
        builder.start_block(1, 2)
        builder.assign(name='x', value='second', line_number=1)
        builder.start_block(2, 2)
        builder.assign(name='y', value=1, line_number=2)
        builder.start_block(2, 2)
        builder.assign(name='y', value=2, line_number=2)
        report = builder.report()
        
        # VERIFY
        self.assertEqual(expected_report.splitlines(), report.splitlines())
开发者ID:Amirus,项目名称:live-py-plugin,代码行数:22,代码来源:report_builder_test.py


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