Coverage for tests\templating\test_eval.py: 100%

4 statements  

« prev     ^ index     » next       coverage.py v7.3.4, created at 2023-12-20 14:17 -0500

1from zapy.templating import templating 

2 

3 

4def test_templating(): 

5 a = templating.evaluate('{{var1}}', { 

6 'var1': 123 

7 }) 

8 assert a == 123