Test for inplace modification of the array.

This commit is contained in:
kmt
2016-01-20 21:40:10 +03:00
parent 7063af0022
commit 2fd239fbeb
2 changed files with 14 additions and 0 deletions

View File

@@ -11,10 +11,17 @@ class TestReverse(object):
['r', 'a', 'b', ' ', 'o', 'o', 'f'])
print('Success: test_reverse')
def test_reverse_inplace(self):
target_list = ['f', 'o', 'o', ' ', 'b', 'a', 'r']
list_of_chars(target_list)
assert_equal(target_list, ['r', 'a', 'b', ' ', 'o', 'o', 'f'])
print('Success: test_reverse_inplace')
def main():
test = TestReverse()
test.test_reverse()
test.test_reverse_inplace()
if __name__ == '__main__':