mirror of
https://github.com/rendercv/rendercv.git
synced 2025-12-23 21:47:55 -05:00
7 lines
205 B
Python
7 lines
205 B
Python
import rendercv
|
|
|
|
|
|
def test_create_contents_of_a_typst_file(input_file_path):
|
|
yaml_string = input_file_path.read_text()
|
|
assert isinstance(rendercv.create_contents_of_a_typst_file(yaml_string), str)
|