From 6e79622f9714598804d8304a903d640a066c1ade Mon Sep 17 00:00:00 2001 From: Martin Date: Fri, 15 Jul 2016 17:51:41 +0200 Subject: [PATCH] fix names in slugify testcase --- tests/lib/test_slugify.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/lib/test_slugify.py b/tests/lib/test_slugify.py index e9dc0f0..a0255ca 100644 --- a/tests/lib/test_slugify.py +++ b/tests/lib/test_slugify.py @@ -4,9 +4,9 @@ import unittest2 from api.lib.slugify import slugify -class TestHelpers(unittest2.TestCase): +class TestSlugification(unittest2.TestCase): - def test_slugify(self): + def test_basic(self): self.assertEqual(slugify('HELLO'), 'hello') self.assertEqual(slugify('this is a test'), 'this_is_a_test') self.assertEqual(slugify('___This is a test___'), 'this_is_a_test')