Skip to content

Commit 66cfb28

Browse files
authored
matching-brackets: Sync tests and add test template (#2046)
Some shenanigans was going on where tests were missing in `tests.toml` but were actually implemented in the test file. With this everything is consistent. Specifically fn early_incomplete_brackets() {} fn early_mismatched_brackets() {}
1 parent 7de8551 commit 66cfb28

File tree

3 files changed

+41
-7
lines changed

3 files changed

+41
-7
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
use matching_brackets::brackets_are_balanced;
2+
3+
{% for test in cases %}
4+
#[test]
5+
#[ignore]
6+
fn {{ test.description | make_ident }}() {
7+
assert!(
8+
{% if test.expected == false %}!{% endif %}
9+
brackets_are_balanced("{{ test.input.value | replace(from="\", to="\\") }}")
10+
);
11+
}
12+
{% endfor -%}

exercises/practice/matching-brackets/.meta/tests.toml

+19-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
1-
# This is an auto-generated file. Regular comments will be removed when this
2-
# file is regenerated. Regenerating will not touch any manually added keys,
3-
# so comments can be added in a "comment" key.
1+
# This is an auto-generated file.
2+
#
3+
# Regenerating this file via `configlet sync` will:
4+
# - Recreate every `description` key/value pair
5+
# - Recreate every `reimplements` key/value pair, where they exist in problem-specifications
6+
# - Remove any `include = true` key/value pair (an omitted `include` key implies inclusion)
7+
# - Preserve any other key/value pair
8+
#
9+
# As user-added comments (using the # character) will be removed when this file
10+
# is regenerated, comments can be added via a `comment` key.
411

512
[81ec11da-38dd-442a-bcf9-3de7754609a5]
613
description = "paired square brackets"
@@ -41,12 +48,21 @@ description = "unpaired and nested brackets"
4148
[a0205e34-c2ac-49e6-a88a-899508d7d68e]
4249
description = "paired and wrong nested brackets"
4350

51+
[1d5c093f-fc84-41fb-8c2a-e052f9581602]
52+
description = "paired and wrong nested brackets but innermost are correct"
53+
4454
[ef47c21b-bcfd-4998-844c-7ad5daad90a8]
4555
description = "paired and incomplete brackets"
4656

4757
[a4675a40-a8be-4fc2-bc47-2a282ce6edbe]
4858
description = "too many closing brackets"
4959

60+
[a345a753-d889-4b7e-99ae-34ac85910d1a]
61+
description = "early unexpected brackets"
62+
63+
[21f81d61-1608-465a-b850-baa44c5def83]
64+
description = "early mismatched brackets"
65+
5066
[99255f93-261b-4435-a352-02bdecc9bdf2]
5167
description = "math expression"
5268

exercises/practice/matching-brackets/tests/matching_brackets.rs

+10-4
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,12 @@ fn paired_and_wrong_nested_brackets() {
7777
assert!(!brackets_are_balanced("[({]})"));
7878
}
7979

80+
#[test]
81+
#[ignore]
82+
fn paired_and_wrong_nested_brackets_but_innermost_are_correct() {
83+
assert!(!brackets_are_balanced("[({}])"));
84+
}
85+
8086
#[test]
8187
#[ignore]
8288
fn paired_and_incomplete_brackets() {
@@ -91,7 +97,7 @@ fn too_many_closing_brackets() {
9197

9298
#[test]
9399
#[ignore]
94-
fn early_incomplete_brackets() {
100+
fn early_unexpected_brackets() {
95101
assert!(!brackets_are_balanced(")()"));
96102
}
97103

@@ -110,7 +116,7 @@ fn math_expression() {
110116
#[test]
111117
#[ignore]
112118
fn complex_latex_expression() {
113-
let input = "\\left(\\begin{array}{cc} \\frac{1}{3} & x\\\\ \\mathrm{e}^{x} &... x^2 \
114-
\\end{array}\\right)";
115-
assert!(brackets_are_balanced(input));
119+
assert!(brackets_are_balanced(
120+
"\\left(\\begin{array}{cc} \\frac{1}{3} & x\\\\ \\mathrm{e}^{x} &... x^2 \\end{array}\\right)"
121+
));
116122
}

0 commit comments

Comments
 (0)