Commit f2bf491f by Chris Jerdonek

Renamed custom_template.py to template_spec.py.

parent 5d8eecfe
...@@ -5,8 +5,8 @@ This module contains the initialization logic called by __init__.py. ...@@ -5,8 +5,8 @@ This module contains the initialization logic called by __init__.py.
""" """
from .custom_template import View from .template_spec import View
from .custom_template import CustomizedTemplate from .template_spec import CustomizedTemplate
from .renderer import Renderer from .renderer import Renderer
......
...@@ -16,7 +16,7 @@ from examples.inverted import Inverted, InvertedLists ...@@ -16,7 +16,7 @@ from examples.inverted import Inverted, InvertedLists
from pystache import CustomizedTemplate as Template from pystache import CustomizedTemplate as Template
from pystache import Renderer from pystache import Renderer
from pystache import View from pystache import View
from pystache.custom_template import CustomLoader from pystache.template_spec import CustomLoader
from pystache.locator import Locator from pystache.locator import Locator
from pystache.loader import Loader from pystache.loader import Loader
from .common import AssertIsMixin from .common import AssertIsMixin
...@@ -139,7 +139,7 @@ class ViewTestCase(unittest.TestCase): ...@@ -139,7 +139,7 @@ class ViewTestCase(unittest.TestCase):
class CustomLoaderTests(unittest.TestCase, AssertIsMixin, AssertStringMixin): class CustomLoaderTests(unittest.TestCase, AssertIsMixin, AssertStringMixin):
""" """
Tests custom_template.CustomLoader. Tests template_spec.CustomLoader.
""" """
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment