Files
pytiled_parser/tests/test_cross_template/test_cross_template.py
2021-12-21 21:50:42 -05:00

17 lines
415 B
Python

import os
from pathlib import Path
import pytest
from pytiled_parser import parse_map
def test_cross_template_tmx_json():
with pytest.raises(NotImplementedError):
parse_map(Path(os.path.dirname(os.path.abspath(__file__))) / "map.tmx")
def test_cross_template_json_tmx():
with pytest.raises(NotImplementedError):
parse_map(Path(os.path.dirname(os.path.abspath(__file__))) / "map.json")