From 0d01756c1db9a6c19d263edadeda775adf5291af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herv=C3=A9=20Beraud?= Date: Wed, 17 Jul 2019 12:50:51 +0200 Subject: [PATCH] Add unit tests on the sphinxext indent function Change-Id: I7c761710e88d144fef4736295e8d9dd85bf72396 --- oslo_policy/tests/test_sphinxext.py | 30 +++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/oslo_policy/tests/test_sphinxext.py b/oslo_policy/tests/test_sphinxext.py index 591b72ec..94493952 100644 --- a/oslo_policy/tests/test_sphinxext.py +++ b/oslo_policy/tests/test_sphinxext.py @@ -20,6 +20,36 @@ from oslo_policy import policy from oslo_policy import sphinxext +class IndentTest(base.BaseTestCase): + + def test_indent(self): + result = sphinxext._indent("foo\nbar") + self.assertEqual(" foo\n bar", result) + + result = sphinxext._indent("") + self.assertEqual("", result) + + result = sphinxext._indent("\n") + self.assertEqual("\n", result) + + result = sphinxext._indent("test\ntesting\n\nafter blank") + self.assertEqual(" test\n testing\n\n after blank", result) + + result = sphinxext._indent("\tfoo\nbar") + self.assertEqual(" \tfoo\n bar", result) + + result = sphinxext._indent(" foo\nbar") + self.assertEqual(" foo\n bar", result) + + result = sphinxext._indent("foo\n bar") + self.assertEqual(" foo\n bar", result) + + result = sphinxext._indent("foo\n\n bar") + self.assertEqual(" foo\n\n bar", result) + + self.assertRaises(AttributeError, sphinxext._indent, None) + + class FormatPolicyTest(base.BaseTestCase): def test_minimal(self):