當前位置: 首頁>>代碼示例>>Python>>正文


Python Parser.parse_line方法代碼示例

本文整理匯總了Python中tap.parser.Parser.parse_line方法的典型用法代碼示例。如果您正苦於以下問題:Python Parser.parse_line方法的具體用法?Python Parser.parse_line怎麽用?Python Parser.parse_line使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在tap.parser.Parser的用法示例。


在下文中一共展示了Parser.parse_line方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: test_finds_description

# 需要導入模塊: from tap.parser import Parser [as 別名]
# 或者: from tap.parser.Parser import parse_line [as 別名]
    def test_finds_description(self):
        parser = Parser()

        line = parser.parse_line('ok 42 A passing test.')

        self.assertEqual('test', line.category)
        self.assertEqual('A passing test.', line.description)
開發者ID:sunny256,項目名稱:tappy,代碼行數:9,代碼來源:test_parser.py

示例2: test_finds_todo

# 需要導入模塊: from tap.parser import Parser [as 別名]
# 或者: from tap.parser.Parser import parse_line [as 別名]
    def test_finds_todo(self):
        parser = Parser()

        line = parser.parse_line('ok A description # TODO Not done')

        self.assertEqual('test', line.category)
        self.assertTrue(line.todo)
開發者ID:sunny256,項目名稱:tappy,代碼行數:9,代碼來源:test_parser.py

示例3: test_finds_skip

# 需要導入模塊: from tap.parser import Parser [as 別名]
# 或者: from tap.parser.Parser import parse_line [as 別名]
    def test_finds_skip(self):
        parser = Parser()

        line = parser.parse_line('ok A description # SKIP for now')

        self.assertEqual('test', line.category)
        self.assertTrue(line.skip)
開發者ID:sunny256,項目名稱:tappy,代碼行數:9,代碼來源:test_parser.py

示例4: test_unrecognizable_line

# 需要導入模塊: from tap.parser import Parser [as 別名]
# 或者: from tap.parser.Parser import parse_line [as 別名]
    def test_unrecognizable_line(self):
        """The parser returns an unrecognizable line."""
        parser = Parser()

        line = parser.parse_line('This is not a valid TAP line. # srsly')

        self.assertEqual('unknown', line.category)
開發者ID:sunny256,項目名稱:tappy,代碼行數:9,代碼來源:test_parser.py

示例5: test_after_hash_is_not_description

# 需要導入模塊: from tap.parser import Parser [as 別名]
# 或者: from tap.parser.Parser import parse_line [as 別名]
    def test_after_hash_is_not_description(self):
        parser = Parser()

        line = parser.parse_line("ok A description # Not part of description.")

        self.assertEqual("test", line.category)
        self.assertEqual("A description", line.description)
開發者ID:python-tap,項目名稱:tappy,代碼行數:9,代碼來源:test_parser.py

示例6: test_ignores_plan_with_any_non_skip_directive

# 需要導入模塊: from tap.parser import Parser [as 別名]
# 或者: from tap.parser.Parser import parse_line [as 別名]
    def test_ignores_plan_with_any_non_skip_directive(self):
        """The parser only recognizes SKIP directives in plans."""
        parser = Parser()

        line = parser.parse_line('1..42 # TODO will not work.')

        self.assertEqual('unknown', line.category)
開發者ID:sunny256,項目名稱:tappy,代碼行數:9,代碼來源:test_parser.py

示例7: test_finds_number

# 需要導入模塊: from tap.parser import Parser [as 別名]
# 或者: from tap.parser.Parser import parse_line [as 別名]
    def test_finds_number(self):
        """The parser extracts a test number."""
        parser = Parser()

        line = parser.parse_line('ok 42 is the magic number.')

        self.assertEqual('test', line.category)
        self.assertEqual(42, line.number)
開發者ID:sunny256,項目名稱:tappy,代碼行數:10,代碼來源:test_parser.py

示例8: test_finds_plan_with_skip

# 需要導入模塊: from tap.parser import Parser [as 別名]
# 或者: from tap.parser.Parser import parse_line [as 別名]
    def test_finds_plan_with_skip(self):
        """The parser extracts a plan line containing a SKIP."""
        parser = Parser()

        line = parser.parse_line('1..42 # Skipping this test file.')

        self.assertEqual('plan', line.category)
        self.assertTrue(line.skip)
開發者ID:sunny256,項目名稱:tappy,代碼行數:10,代碼來源:test_parser.py

示例9: test_finds_plan

# 需要導入模塊: from tap.parser import Parser [as 別名]
# 或者: from tap.parser.Parser import parse_line [as 別名]
    def test_finds_plan(self):
        """The parser extracts a plan line."""
        parser = Parser()

        line = parser.parse_line('1..42')

        self.assertEqual('plan', line.category)
        self.assertEqual(42, line.expected_tests)
開發者ID:sunny256,項目名稱:tappy,代碼行數:10,代碼來源:test_parser.py

示例10: test_finds_version

# 需要導入模塊: from tap.parser import Parser [as 別名]
# 或者: from tap.parser.Parser import parse_line [as 別名]
    def test_finds_version(self):
        """The parser extracts a version line."""
        parser = Parser()

        line = parser.parse_line('TAP version 13')

        self.assertEqual('version', line.category)
        self.assertEqual(13, line.version)
開發者ID:sunny256,項目名稱:tappy,代碼行數:10,代碼來源:test_parser.py

示例11: test_bail_out_line

# 需要導入模塊: from tap.parser import Parser [as 別名]
# 或者: from tap.parser.Parser import parse_line [as 別名]
    def test_bail_out_line(self):
        """The parser extracts a bail out line."""
        parser = Parser()

        line = parser.parse_line('Bail out! This is the reason to bail.')

        self.assertEqual('bail', line.category)
        self.assertEqual('This is the reason to bail.', line.reason)
開發者ID:sunny256,項目名稱:tappy,代碼行數:10,代碼來源:test_parser.py

示例12: test_diagnostic_line

# 需要導入模塊: from tap.parser import Parser [as 別名]
# 或者: from tap.parser.Parser import parse_line [as 別名]
    def test_diagnostic_line(self):
        """The parser extracts a diagnostic line."""
        text = '# An example diagnostic line'
        parser = Parser()

        line = parser.parse_line(text)

        self.assertEqual('diagnostic', line.category)
        self.assertEqual(text, line.text)
開發者ID:sunny256,項目名稱:tappy,代碼行數:11,代碼來源:test_parser.py

示例13: test_finds_not_ok

# 需要導入模塊: from tap.parser import Parser [as 別名]
# 或者: from tap.parser.Parser import parse_line [as 別名]
    def test_finds_not_ok(self):
        """The parser extracts a not ok line."""
        parser = Parser()

        line = parser.parse_line('not ok - This is a failing test line.')

        self.assertEqual('test', line.category)
        self.assertFalse(line.ok)
        self.assertTrue(line.number is None)
開發者ID:sunny256,項目名稱:tappy,代碼行數:11,代碼來源:test_parser.py

示例14: test_finds_ok

# 需要導入模塊: from tap.parser import Parser [as 別名]
# 或者: from tap.parser.Parser import parse_line [as 別名]
    def test_finds_ok(self):
        """The parser extracts an ok line."""
        parser = Parser()

        line = parser.parse_line("ok - This is a passing test line.")

        self.assertEqual("test", line.category)
        self.assertTrue(line.ok)
        self.assertTrue(line.number is None)
開發者ID:python-tap,項目名稱:tappy,代碼行數:11,代碼來源:test_parser.py

示例15: test_finds_not_ok

# 需要導入模塊: from tap.parser import Parser [as 別名]
# 或者: from tap.parser.Parser import parse_line [as 別名]
    def test_finds_not_ok(self):
        """The parser extracts a not ok line."""
        parser = Parser()

        line = parser.parse_line("not ok - This is a failing test line.")

        self.assertEqual("test", line.category)
        self.assertFalse(line.ok)
        self.assertTrue(line.number is None)
        self.assertEqual("", line.directive.text)
開發者ID:python-tap,項目名稱:tappy,代碼行數:12,代碼來源:test_parser.py


注:本文中的tap.parser.Parser.parse_line方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。