MCPcopy Create free account
hub / github.com/executablebooks/markdown-it-py / test_emptyStr

Function test_emptyStr

tests/test_api/test_main.py:259–278  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

257
258
259def test_emptyStr():
260 md = MarkdownIt()
261 tokens = md.parseInline("")
262 assert tokens == [
263 Token(
264 type="inline",
265 tag="",
266 nesting=0,
267 attrs={},
268 map=[0, 1],
269 level=0,
270 children=[],
271 content="",
272 markup="",
273 info="",
274 meta={},
275 block=False,
276 hidden=False,
277 )
278 ]
279
280
281def test_empty_env():

Callers

nothing calls this directly

Calls 3

parseInlineMethod · 0.95
MarkdownItClass · 0.90
TokenClass · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…