Skip to content

Commit 9b3791e

Browse files
committed
parallel-letter-frequency: Add "Unicode letters" test
1 parent 7939dbd commit 9b3791e

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

exercises/practice/parallel-letter-frequency/.meta/tests.toml

-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ rust_fn = "numbers_dont_count"
4141

4242
[aa9f97ac-3961-4af1-88e7-6efed1bfddfd]
4343
description = "Unicode letters"
44-
rust_fn = "all_three_anthems_1_worker"
4544

4645
[7b1da046-701b-41fc-813e-dcfb5ee51813]
4746
description = "combination of lower- and uppercase letters, punctuation and white space"

exercises/practice/parallel-letter-frequency/tests/parallel_letter_frequency.rs

+12
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,18 @@ fn numbers_dont_count() {
125125
assert!(!frequency::frequency(&["Testing, 1, 2, 3"], 4).contains_key(&'1'));
126126
}
127127

128+
#[test]
129+
#[ignore]
130+
fn unicode_letters() {
131+
let mut hm = HashMap::new();
132+
hm.insert('本', 1);
133+
hm.insert('φ', 1);
134+
hm.insert('ほ', 1);
135+
hm.insert('ø', 1);
136+
let v = ["本", "φ", "ほ", "ø"];
137+
assert_eq!(frequency::frequency(&v, 4), hm);
138+
}
139+
128140
#[test]
129141
#[ignore]
130142
fn all_three_anthems_1_worker() {

0 commit comments

Comments
 (0)