[docs]classTemplateTest(IonTestCase):"""Tests for the templates."""
[docs]deftest_validate_templates(self):"""Validates all the templates."""out=StringIO()withcontextlib.redirect_stdout(out):call_command("validate_templates")self.assertEqual(out.getvalue().strip(),"0 errors found")