Skip to content

Commit

Permalink
Sync Rectangles tests with problem spec
Browse files Browse the repository at this point in the history
  • Loading branch information
themetar committed Nov 1, 2024
1 parent d1bbdef commit 7a3195f
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 4 deletions.
3 changes: 2 additions & 1 deletion exercises/practice/rectangles/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"ankorGH",
"SleeplessByte",
"tejasbubane",
"xarxziux"
"xarxziux",
"themetar"
],
"files": {
"solution": [
Expand Down
16 changes: 13 additions & 3 deletions exercises/practice/rectangles/.meta/tests.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# This is an auto-generated file. Regular comments will be removed when this
# file is regenerated. Regenerating will not touch any manually added keys,
# so comments can be added in a "comment" key.
# This is an auto-generated file.
#
# Regenerating this file via `configlet sync` will:
# - Recreate every `description` key/value pair
# - Recreate every `reimplements` key/value pair, where they exist in problem-specifications
# - Remove any `include = true` key/value pair (an omitted `include` key implies inclusion)
# - Preserve any other key/value pair
#
# As user-added comments (using the # character) will be removed when this file
# is regenerated, comments can be added via a `comment` key.

[485b7bab-4150-40aa-a8db-73013427d08c]
description = "no rows"
Expand Down Expand Up @@ -40,3 +47,6 @@ description = "corner is required for a rectangle to be complete"

[d78fe379-8c1b-4d3c-bdf7-29bfb6f6dc66]
description = "large input with many rectangles"

[6ef24e0f-d191-46da-b929-4faca24b4cd2]
description = "rectangles must have four sides"
15 changes: 15 additions & 0 deletions exercises/practice/rectangles/rectangles.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,4 +112,19 @@ describe('Rectangles', () => {

expect(actual).toEqual(expected);
});

xtest('rectangles must have four sides', () => {
const expected = 5;
const actual = count([
"+-+ +-+",
"| | | |",
"+-+-+-+",
" | | ",
"+-+-+-+",
"| | | |",
"+-+ +-+"
]);

expect(actual).toEqual(expected);
});
});

0 comments on commit 7a3195f

Please sign in to comment.