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

21 lines
466 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
2015-07-04 07:57:09 +08:00
def test_reverse(self):
assert_equal(list_of_chars(None), None)
assert_equal(list_of_chars(['']), [''])
2015-07-12 03:34:14 +08:00
assert_equal(list_of_chars(
['f', 'o', 'o', ' ', 'b', 'a', 'r']),
['r', 'a', 'b', ' ', 'o', 'o', 'f'])
2015-07-04 07:57:09 +08:00
print('Success: test_reverse')
2015-07-12 03:34:14 +08:00
2015-07-04 07:57:09 +08:00
def main():
test = TestReverse()
test.test_reverse()
2015-07-12 03:34:14 +08:00
2015-07-04 07:57:09 +08:00
if __name__ == '__main__':
main()