Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1""" 

2@file 

3@brief List of testing resources. 

4""" 

5import os 

6 

7 

8def get_wiki_img(): 

9 """ 

10 Returns a path to local image. 

11 """ 

12 this = os.path.dirname(__file__) 

13 img = os.path.join(this, "wiki.png") 

14 if not os.path.exists(img): 

15 raise FileNotFoundError("Unable to find '{}'.".format(img)) 

16 return img