modify project structure

to better follow modern convention and good practices
This commit is contained in:
stev 2023-09-05 22:48:20 +02:00
parent a727afe705
commit d492b67dc1
9 changed files with 727 additions and 17 deletions

0
tests/__init__.py Normal file
View file

23
tests/test_generate.py Normal file
View file

@ -0,0 +1,23 @@
from gmirator.generate import (
process_file,
process_list,
process_inline,
repl_url,
repl_heading
)
def test_process_file():
pass
def test_process_list():
pass
def test_process_inline():
assert process_inline("*Hello* ~~world~~!") == "<em>Hello</em> <s>world</s>!"
def test_repl_url():
pass
def test_repl_heading():
pass