소스 검색

test_heading() and test_comment()

tags/v0.2
Ben Kurtovic 11 년 전
부모
커밋
132c6584d0
1개의 변경된 파일22개의 추가작업 그리고 2개의 파일을 삭제
  1. +22
    -2
      tests/test_builder.py

+ 22
- 2
tests/test_builder.py 파일 보기

@@ -173,11 +173,31 @@ class TestBuilder(TreeEqualityTestCase):

def test_heading(self):
"""tests for building Heading nodes"""
pass
tests = [
([tokens.HeadingStart(level=2), tokens.Text(text="foobar"),
tokens.HeadingEnd()],
wrap([Heading(wrap([Text("foobar")]), 2)])),

([tokens.HeadingStart(level=4), tokens.Text(text="spam"),
tokens.Text(text="eggs"), tokens.HeadingEnd()],
wrap([Heading(wrap([Text("spam"), Text("eggs")]), 4)])),
]
for test, valid in tests:
self.assertWikicodeEqual(valid, self.builder.build(test))

def test_comment(self):
"""tests for building Comment nodes"""
pass
tests = [
([tokens.CommentStart(), tokens.Text(text="foobar"),
tokens.CommentEnd()],
wrap([Comment(wrap([Text("foobar")]))])),

([tokens.CommentStart(), tokens.Text(text="spam"),
tokens.Text(text="eggs"), tokens.CommentEnd()],
wrap([Comment(wrap([Text("spam"), Text("eggs")]))])),
]
for test, valid in tests:
self.assertWikicodeEqual(valid, self.builder.build(test))

@unittest.skip("holding this until feature/html_tags is ready")
def test_tag(self):


불러오는 중...
취소
저장