fix test.base.py to extent unittest.TestCase

This commit is contained in:
Tayyeb 2015-08-18 09:37:40 +04:30
parent 7c76b2cea1
commit bec5b9bc41
1 changed files with 3 additions and 1 deletions

View File

@ -8,8 +8,10 @@
from csscompressor import compress
import unittest
class BaseTest:
class BaseTest(unittest.TestCase):
def _test(self, input, output):
result = compress(input)
if result != output.strip():