Add test for Bonfire Check for Palindromes

- Checks unicode characters between "Z" (capital Z) and "a" (small a)"
such as "\" (forward slash) as punctuation.
pull/3115/head
Abhisek Pattnaik 2015-09-06 04:50:36 +05:30
parent ac6fe27430
commit 50e32aa3f5
1 changed files with 2 additions and 1 deletions

View File

@ -145,7 +145,8 @@
"assert.strictEqual(palindrome(\"almostomla\"), false, \"\\\"almostomla\\\" is not a palindrome\");",
"assert.strictEqual(palindrome(\"My age is 0, 0 si ega ym.\"), true, \"\\\"My age is 0, 0 si ega ym.\\\" is a palindrome\");",
"assert.strictEqual(palindrome(\"I'm 23 non 32 m'I?\"), true, \"\\\"I'm 23 non 32 m'I?\\\" is a palindrome\");",
"assert.strictEqual(palindrome(\"1 eye for of 1 eye.\"), false, \"\\\"1 eye for of 1 eye.\\\" is not a palindrome\");"
"assert.strictEqual(palindrome(\"1 eye for of 1 eye.\"), false, \"\\\"1 eye for of 1 eye.\\\" is not a palindrome\");",
"assert.strictEqual(palindrome(\"0_0 (: /-\\ :) 0-0\"), true, \"\\\"0_0 (: /-\\\\ :) 0-0\\\" is a palindrome\");"
],
"challengeSeed": [
"function palindrome(str) {",