Merge pull request #11987 from dhcodes/fix/improved-tests-divide-by-decimal

change test to ensure use of /
This commit is contained in:
Timo
2017-01-26 09:19:21 +01:00
committed by GitHub

View File

@ -677,19 +677,18 @@
"Change the <code>0.0</code> so that <code>quotient</code> will equal to <code>2.2</code>." "Change the <code>0.0</code> so that <code>quotient</code> will equal to <code>2.2</code>."
], ],
"challengeSeed": [ "challengeSeed": [
"var quotient = 0.0 / 2.0;", "var quotient = 0.0 / 2.0; // Fix this line",
"", "",
"" ""
], ],
"tail": [ "tail": [
"(function(y){return 'quotient = '+y;})(quotient);" "(function(y){return 'quotient = '+y;})(quotient);"
], ],
"solutions": [ "solutions": [],
"var quotient = 4.4 / 2.0;"
],
"tests": [ "tests": [
"assert(quotient === 2.2, 'message: The variable <code>quotient</code> should equal <code>2.2</code>.');", "assert(quotient === 2.2, 'message: The variable <code>quotient</code> should equal <code>2.2</code>');",
"assert(/\\//.test(code), 'message: You should use the <code>/</code> operator');" "assert(/4\\.40*\\s*\\/\\s*2\\.*0*/.test(code), 'message: You should use the <code>/</code> operator to divide 4.4 by 2');",
"assert(code.match(/quotient/g).length === 3, 'message: The quotient variable should only be assigned once');"
], ],
"type": "waypoint", "type": "waypoint",
"challengeType": 1, "challengeType": 1,