(obj, expected)
| 25 | ], |
| 26 | ) |
| 27 | def test_jinja2_tojson(obj, expected): |
| 28 | res = jinja2.Template("{{ obj|tojson }}").render(obj=obj) |
| 29 | assert res == expected |
| 30 | |
| 31 | |
| 32 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected
searching dependent graphs…