More fixes for truncate

This commit is contained in:
Nathan Leniz
2015-02-13 15:46:28 -05:00
parent 01cddba50d
commit 3bcf3d8d54

View File

@ -167,11 +167,11 @@
"Note that the three dots at the end add to the string length." "Note that the three dots at the end add to the string length."
], ],
"challengeEntryPoint":"truncate('A-tisket a-tasket A green and yellow basket', 11);", "challengeEntryPoint":"truncate('A-tisket a-tasket A green and yellow basket', 11);",
"challengeSeed":"function truncate(str, num) {\n // Clear out that junk in your trunc\r\n return str;\r\n}", "challengeSeed":"function truncate(str, num) {\n // Clear out that junk in your trunk\r\n return str;\r\n}",
"tests": [ "tests": [
"assert.strictEqual(truncate('A-tisket a-tasket A green and yellow basket, 24), 'A-tisket…, should truncate string the given length');", "expect(truncate('A-tisket a-tasket A green and yellow basket', 24)).to.eqls('A-tisket…');",
"assert.strictEqual(truncate('A-tisket a-tasket A green and yellow basket, 'A-tisket a-tasket A green and yellow basket.length), string, 'should not truncate if string is = length');", "assert(truncate('A-tisket a-tasket A green and yellow basket', 'A-tisket a-tasket A green and yellow basket'.length) === 'A-tisket a-tasket A green and yellow basket', 'should not truncate if string is = length');",
"assert.strictEqual(truncate('A-tisket a-tasket A green and yellow basket, 'A-tisket a-tasket A green and yellow basket.length + 2), string, 'should not truncate if string is < length');" "assert.strictEqual(truncate('A-tisket a-tasket A green and yellow basket', 'A-tisket a-tasket A green and yellow basket'.length + 2), 'A-tisket a-tasket A green and yellow basket', 'should not truncate if string is < length');"
] ]
}, },
{ {