Source code for lightmlrestapi.testing.data

"""
List of testing resources.


:githublink:`%|py|5`
"""
import os


[docs]def get_wiki_img(): """ Returns a path to local image. :githublink:`%|py|11` """ this = os.path.dirname(__file__) img = os.path.join(this, "wiki.png") if not os.path.exists(img): raise FileNotFoundError("Unable to find '{}'.".format(img)) return img