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


Python TestExpectationsChecker.check_tabs方法代码示例

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


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

示例1: assert_lines_lint

# 需要导入模块: from test_expectations import TestExpectationsChecker [as 别名]
# 或者: from test_expectations.TestExpectationsChecker import check_tabs [as 别名]
    def assert_lines_lint(self, lines, should_pass, expected_output=None):
        self._error_collector.reset_errors()

        host = MockHost()
        checker = TestExpectationsChecker('test/TestExpectations',
                                          self._error_collector, host=host)

        # We should have a valid port, but override it with a test port so we
        # can check the lines.
        self.assertIsNotNone(checker._port_obj)
        checker._port_obj = host.port_factory.get('test-mac-mac10.10')

        checker.check_test_expectations(expectations_str='\n'.join(lines),
                                        tests=[self._test_file])
        checker.check_tabs(lines)
        if should_pass:
            self.assertEqual('', self._error_collector.get_errors())
        elif expected_output:
            self.assertEqual(expected_output, self._error_collector.get_errors())
        else:
            self.assertNotEquals('', self._error_collector.get_errors())

        # Note that a patch might change a line that introduces errors elsewhere, but we
        # don't want to lint the whole file (it can unfairly punish patches for pre-existing errors).
        # We rely on a separate lint-webkitpy step on the bots to keep the whole file okay.
        # FIXME: See https://bugs.webkit.org/show_bug.cgi?id=104712 .
        self.assertFalse(self._error_collector.turned_off_filtering)
开发者ID:mirror,项目名称:chromium,代码行数:29,代码来源:test_expectations_unittest.py

示例2: assert_lines_lint

# 需要导入模块: from test_expectations import TestExpectationsChecker [as 别名]
# 或者: from test_expectations.TestExpectationsChecker import check_tabs [as 别名]
 def assert_lines_lint(self, lines, should_pass, expected_output=None):
     self._error_collector.reset_errors()
     checker = TestExpectationsChecker('test/test_expectations.txt',
                                       self._error_collector, host=MockHost())
     checker.check_test_expectations(expectations_str='\n'.join(lines),
                                     tests=[self._test_file],
                                     overrides=None)
     checker.check_tabs(lines)
     if should_pass:
         self.assertEqual('', self._error_collector.get_errors())
     elif expected_output:
         self.assertEquals(expected_output, self._error_collector.get_errors())
     else:
         self.assertNotEquals('', self._error_collector.get_errors())
     self.assertTrue(self._error_collector.turned_off_filtering)
开发者ID:sohocoke,项目名称:webkit,代码行数:17,代码来源:test_expectations_unittest.py


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