Coverage for foran/render.py: 100.00%

7 statements  

« prev     ^ index     » next       coverage.py v7.4.1, created at 2024-02-04 18:05:08 +00:00

1"""In front or behind (Foran eller bagved)? rendering interface for templates.""" 

2 

3from enum import Enum, auto 

4 

5 

6class Template(Enum): 

7 NONE = auto() 

8 STRING = auto() 

9 F_STRING = auto() 

10 JINJA_STRING = auto() 

11 JINJA_PATH = auto()