modify project structure
to better follow modern convention and good practices
This commit is contained in:
parent
a727afe705
commit
d492b67dc1
9 changed files with 727 additions and 17 deletions
0
tests/__init__.py
Normal file
0
tests/__init__.py
Normal file
23
tests/test_generate.py
Normal file
23
tests/test_generate.py
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue