aboutsummaryrefslogtreecommitdiff
path: root/tagging/tests/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'tagging/tests/utils.py')
-rw-r--r--tagging/tests/utils.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/tagging/tests/utils.py b/tagging/tests/utils.py
new file mode 100644
index 0000000..2f041d9
--- /dev/null
+++ b/tagging/tests/utils.py
@@ -0,0 +1,16 @@
+"""
+Tests utils for tagging.
+"""
+from django.template.loader import BaseLoader
+
+
+class VoidLoader(BaseLoader):
+ """
+ Template loader which is always returning
+ an empty template.
+ """
+ is_usable = True
+ _accepts_engine_in_init = True
+
+ def load_template_source(self, template_name, template_dirs=None):
+ return ('', 'voidloader:%s' % template_name)