Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion exercises/luhn/canonical-data.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"exercise": "luhn",
"version": "1.6.1",
"version": "1.7.0",
"cases": [
{
"description": "single digit strings can not be valid",
Expand Down Expand Up @@ -58,6 +58,14 @@
},
"expected": false
},
{
"description": "invalid long number with an even remainder",
"property": "valid",
"input": {
"value": "1 2345 6789 1234 5678 9012"
},
"expected": false
},
{
"description": "valid number with an even number of digits",
"property": "valid",
Expand Down