You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/test/units/executor/module_common/conftest.py

11 lines
193 B
Python

import pytest
@pytest.fixture
def templar():
class FakeTemplar:
def template(self, template_string, *args, **kwargs):
return template_string
return FakeTemplar()