summaryrefslogtreecommitdiff
path: root/markupsafe/tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'markupsafe/tests.py')
-rw-r--r--markupsafe/tests.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/markupsafe/tests.py b/markupsafe/tests.py
index 703cfa6..b34cc6e 100644
--- a/markupsafe/tests.py
+++ b/markupsafe/tests.py
@@ -89,6 +89,9 @@ class MarkupTestCase(unittest.TestCase):
Markup('b')
])
+ def test_mul(self):
+ self.assertEqual(Markup('a') * 3, Markup('aaa'))
+
class MarkupLeakTestCase(unittest.TestCase):