mirror of
https://github.com/donnemartin/interactive-coding-challenges.git
synced 2024-03-22 13:11:13 +08:00
20 lines
435 B
Python
20 lines
435 B
Python
from nose.tools import assert_equal
|
|
|
|
|
|
class TestCompress(object):
|
|
|
|
def test_compress(self, func):
|
|
assert_equal(func(None), None)
|
|
assert_equal(func(''), '')
|
|
assert_equal(func('AABBCC'), 'AABBCC')
|
|
assert_equal(func('AAABCCDDDD'), 'A3B1C2D4')
|
|
print('Success: test_compress')
|
|
|
|
|
|
def main():
|
|
test = TestCompress()
|
|
test.test_compress(compress_string)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main() |