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

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

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__':