summaryrefslogtreecommitdiff
path: root/test.py
diff options
context:
space:
mode:
Diffstat (limited to 'test.py')
-rw-r--r--test.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/test.py b/test.py
index 29f0ac7..98debff 100644
--- a/test.py
+++ b/test.py
@@ -242,18 +242,5 @@ class TestUtils(unittest.TestCase):
self.assertEqual(r, txt)
-class TestUtils(unittest.TestCase):
-
- def test_smart_truncate_no_max_length(self):
- txt = '1,000 reasons you are #1'
- r = smart_truncate(txt)
- self.assertEqual(r, txt)
-
- def test_smart_truncate_no_seperator(self):
- txt = '1,000 reasons you are #1'
- r = smart_truncate(txt, max_length=100, separator='_')
- self.assertEqual(r, txt)
-
-
if __name__ == '__main__':
unittest.main()