1
0
mirror of https://github.com/makeworld-the-better-one/md2gemini synced 2025-04-05 06:19:06 +02:00
md2gemini/tests/test_link_func.py
raspbeguy 3e01d5937e
Add API parameter rellink_func (#27)
Co-authored-by: makeworld
2020-12-05 09:42:29 -05:00

19 lines
359 B
Python

from .util import normalize
from md2gemini import md2gemini
def f(md):
return normalize(md2gemini(md, link_func=(lambda x: "foo")))
def test_func_root_url():
md = "[test](/url)"
gem = "=> foo test"
assert f(md) == gem
def test_func_absolute_url():
md = "[test](https://duck.com/test)"
gem = "=> foo test"
assert f(md) == gem