Files
edx-platform/common/djangoapps/pipeline_mako/tests/test_static_content.py
2019-12-30 12:25:38 -05:00

18 lines
454 B
Python

"""
Tests of pipeline_mako/templates/static_content.html
"""
import unittest
from edxmako.shortcuts import render_to_string
class TestStaticContent(unittest.TestCase):
"""Tests for static_content.html"""
def test_optional_include_mako(self):
out = render_to_string("test_optional_include_mako.html", {})
self.assertIn("Welcome to test_optional_include_mako.html", out)
self.assertIn("This is test_exists.html", out)