Updated Unit Test to include function call (reverse_words) in testReverseWords

This commit is contained in:
jaysonfrancis 2016-03-03 07:32:17 -08:00
parent d0b8b5fe86
commit a57405405d

View File

@ -78,14 +78,12 @@
{
"cell_type": "code",
"execution_count": 21,
"metadata": {
"collapsed": false
},
"metadata": {},
"outputs": [],
"source": [
"def reverse_words (S):\n",
" #TODO: implement me\n",
" pass "
" pass"
]
},
{
@ -99,24 +97,22 @@
{
"cell_type": "code",
"execution_count": 1,
"metadata": {
"collapsed": false
},
"metadata": {},
"outputs": [],
"source": [
"from nose.tools import assert_equal\n",
"\n",
"class UnitTest (object):\n",
" def testReverseWords(self):\n",
" assert_equal(reverse_words('the sun is hot'), 'eht nus si toh')\n",
" assert_equal(reverse_words(''), None)\n",
" assert_equal(reverse_words('123 456 789'), '321 654 987')\n",
" assert_equal(reverse_words('magic'), 'cigam')\n",
" assert_equal(func('the sun is hot'), 'eht nus si toh')\n",
" assert_equal(func(''), None)\n",
" assert_equal(func('123 456 789'), '321 654 987')\n",
" assert_equal(func('magic'), 'cigam')\n",
" print('Success: reverse_words')\n",
" \n",
"def main():\n",
" test = UnitTest()\n",
" test.testReverseWords()\n",
" test.testReverseWords(reverse_words)\n",
"\n",
"if __name__==\"__main__\":\n",
" main()"
@ -140,7 +136,7 @@
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 2
"version": 2.0
},
"file_extension": ".py",
"mimetype": "text/x-python",
@ -152,4 +148,4 @@
},
"nbformat": 4,
"nbformat_minor": 0
}
}