interactive-coding-challenges/arrays_strings/reverse_string/test_reverse_string.py

29 lines
803 B
Python
Raw Normal View History

2015-07-04 07:57:09 +08:00
from nose.tools import assert_equal
class TestReverse(object):
2015-07-12 03:34:14 +08:00
2016-08-13 18:40:13 +08:00
def test_reverse(self, func):
assert_equal(func(None), None)
assert_equal(func(['']), [''])
assert_equal(func(
2015-07-12 03:34:14 +08:00
['f', 'o', 'o', ' ', 'b', 'a', 'r']),
['r', 'a', 'b', ' ', 'o', 'o', 'f'])
2015-07-04 07:57:09 +08:00
print('Success: test_reverse')
2016-08-13 18:40:13 +08:00
def test_reverse_inplace(self, func):
target_list = ['f', 'o', 'o', ' ', 'b', 'a', 'r']
2016-08-13 18:40:13 +08:00
func(target_list)
assert_equal(target_list, ['r', 'a', 'b', ' ', 'o', 'o', 'f'])
print('Success: test_reverse_inplace')
2015-07-12 03:34:14 +08:00
2015-07-04 07:57:09 +08:00
def main():
test = TestReverse()
2016-08-13 18:40:13 +08:00
reverse_string = ReverseString()
test.test_reverse(reverse_string.reverse)
test.test_reverse_inplace(reverse_string.reverse)
2015-07-12 03:34:14 +08:00
2015-07-04 07:57:09 +08:00
if __name__ == '__main__':
main()