1
0
mirror of https://github.com/makeworld-the-better-one/md2gemini synced 2025-04-05 06:19:06 +02:00
md2gemini/tests/test_base_url.py
2020-09-09 16:01:55 -04:00

19 lines
391 B
Python

from .util import normalize
from md2gemini import md2gemini
def f(md):
return normalize(md2gemini(md, base_url="https://example.com/"))
def test_root_url():
md = "[test](/url)"
gem = "=> https://example.com/url test"
assert f(md) == gem
def test_absolute_url():
md = "[test](https://duck.com/test)"
gem = "=> https://duck.com/test test"
assert f(md) == gem