Skip to content

Commit 31c72ae

Browse files
authored
Sync tests (#288)
1 parent 214665e commit 31c72ae

File tree

6 files changed

+92
-4
lines changed

6 files changed

+92
-4
lines changed

exercises/practice/bob/.meta/tests.toml

+5
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ description = "alternate silence"
7171

7272
[66953780-165b-4e7e-8ce3-4bcb80b6385a]
7373
description = "multiple line question"
74+
include = false
7475

7576
[5371ef75-d9ea-4103-bcfa-2da973ddec1b]
7677
description = "starting with whitespace"
@@ -83,3 +84,7 @@ description = "other whitespace"
8384

8485
[12983553-8601-46a8-92fa-fcaa3bc4a2a0]
8586
description = "non-question ending with whitespace"
87+
88+
[2c7278ac-f955-4eb4-bf8f-e33eb4116a15]
89+
description = "multiple line question"
90+
reimplements = "66953780-165b-4e7e-8ce3-4bcb80b6385a"

exercises/practice/bob/test-bob.bats

+2-2
Original file line numberDiff line numberDiff line change
@@ -143,9 +143,9 @@ load bats-extra
143143

144144
@test "multiple line question" {
145145
[[ $BATS_RUN_SKIPPED == "true" ]] || skip
146-
run gawk -f bob.awk <<< $'\nDoes this cryogenic chamber make me look fat?\nNo'
146+
run gawk -f bob.awk <<< $'\nDoes this cryogenic chamber make\n me look fat?'
147147
assert_success
148-
assert_output "Whatever."
148+
assert_output "Sure."
149149
}
150150
151151
@test "starting with whitespace" {

exercises/practice/forth/.meta/tests.toml

+18
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ description = "addition -> errors if there is nothing on the stack"
2424
[06efb9a4-817a-435e-b509-06166993c1b8]
2525
description = "addition -> errors if there is only one value on the stack"
2626

27+
[1e07a098-c5fa-4c66-97b2-3c81205dbc2f]
28+
description = "addition -> more than two values on the stack"
29+
2730
[09687c99-7bbc-44af-8526-e402f997ccbf]
2831
description = "subtraction -> can subtract two numbers"
2932

@@ -33,6 +36,9 @@ description = "subtraction -> errors if there is nothing on the stack"
3336
[b3cee1b2-9159-418a-b00d-a1bb3765c23b]
3437
description = "subtraction -> errors if there is only one value on the stack"
3538

39+
[2c8cc5ed-da97-4cb1-8b98-fa7b526644f4]
40+
description = "subtraction -> more than two values on the stack"
41+
3642
[5df0ceb5-922e-401f-974d-8287427dbf21]
3743
description = "multiplication -> can multiply two numbers"
3844

@@ -42,6 +48,9 @@ description = "multiplication -> errors if there is nothing on the stack"
4248
[8ba4b432-9f94-41e0-8fae-3b3712bd51b3]
4349
description = "multiplication -> errors if there is only one value on the stack"
4450

51+
[5cd085b5-deb1-43cc-9c17-6b1c38bc9970]
52+
description = "multiplication -> more than two values on the stack"
53+
4554
[e74c2204-b057-4cff-9aa9-31c7c97a93f5]
4655
description = "division -> can divide two numbers"
4756

@@ -57,12 +66,21 @@ description = "division -> errors if there is nothing on the stack"
5766
[d5547f43-c2ff-4d5c-9cb0-2a4f6684c20d]
5867
description = "division -> errors if there is only one value on the stack"
5968

69+
[f224f3e0-b6b6-4864-81de-9769ecefa03f]
70+
description = "division -> more than two values on the stack"
71+
6072
[ee28d729-6692-4a30-b9be-0d830c52a68c]
6173
description = "combined arithmetic -> addition and subtraction"
6274

6375
[40b197da-fa4b-4aca-a50b-f000d19422c1]
6476
description = "combined arithmetic -> multiplication and division"
6577

78+
[f749b540-53aa-458e-87ec-a70797eddbcb]
79+
description = "combined arithmetic -> multiplication and addition"
80+
81+
[c8e5a4c2-f9bf-4805-9a35-3c3314e4989a]
82+
description = "combined arithmetic -> addition and multiplication"
83+
6684
[c5758235-6eef-4bf6-ab62-c878e50b9957]
6785
description = "dup -> copies a value on the stack"
6886

exercises/practice/forth/test-forth.bats

+57-2
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,15 @@ END
4848
assert_output --partial "only one value on the stack"
4949
}
5050

51+
@test addition_more_than_two_values_on_the_stack {
52+
[[ $BATS_RUN_SKIPPED == "true" ]] || skip
53+
run gawk -f forth.awk <<END
54+
1 2 3 +
55+
END
56+
assert_success
57+
assert_output "1 5"
58+
}
59+
5160
# subtraction
5261
@test subtraction_ok {
5362
[[ $BATS_RUN_SKIPPED == "true" ]] || skip
@@ -76,6 +85,15 @@ END
7685
assert_output --partial "only one value on the stack"
7786
}
7887

88+
@test subtraction_more_than_two_values_on_the_stack {
89+
[[ $BATS_RUN_SKIPPED == "true" ]] || skip
90+
run gawk -f forth.awk <<END
91+
1 12 3 -
92+
END
93+
assert_success
94+
assert_output "1 9"
95+
}
96+
7997
# multiplication
8098
@test multiplication_ok {
8199
[[ $BATS_RUN_SKIPPED == "true" ]] || skip
@@ -104,6 +122,15 @@ END
104122
assert_output --partial "only one value on the stack"
105123
}
106124

125+
@test multiplication_more_than_two_values_on_the_stack {
126+
[[ $BATS_RUN_SKIPPED == "true" ]] || skip
127+
run gawk -f forth.awk <<END
128+
1 2 3 *
129+
END
130+
assert_success
131+
assert_output "1 6"
132+
}
133+
107134
# division
108135
@test division_ok {
109136
[[ $BATS_RUN_SKIPPED == "true" ]] || skip
@@ -150,16 +177,26 @@ END
150177
assert_output --partial "divide by zero"
151178
}
152179

180+
@test division_more_than_two_values_on_the_stack {
181+
[[ $BATS_RUN_SKIPPED == "true" ]] || skip
182+
run gawk -f forth.awk <<END
183+
1 12 3 /
184+
END
185+
assert_success
186+
assert_output "1 4"
187+
}
188+
153189
# combined arithmetic
154-
@test add_and_subtract {
190+
@test combined_add_and_subtract {
155191
[[ $BATS_RUN_SKIPPED == "true" ]] || skip
156192
run gawk -f forth.awk <<END
157193
1 2 + 4 -
158194
END
159195
assert_success
160196
assert_output "-1"
161197
}
162-
@test multiply_and_divide {
198+
199+
@test combined_multiply_and_divide {
163200
[[ $BATS_RUN_SKIPPED == "true" ]] || skip
164201
run gawk -f forth.awk <<END
165202
2 4 * 3 /
@@ -168,6 +205,24 @@ END
168205
assert_output "2"
169206
}
170207

208+
@test combined_multiplication_and_addition {
209+
[[ $BATS_RUN_SKIPPED == "true" ]] || skip
210+
run gawk -f forth.awk <<END
211+
1 3 4 * +
212+
END
213+
assert_success
214+
assert_output "13"
215+
}
216+
217+
@test combined_addition_and_multiplication {
218+
[[ $BATS_RUN_SKIPPED == "true" ]] || skip
219+
run gawk -f forth.awk <<END
220+
1 3 4 + *
221+
END
222+
assert_success
223+
assert_output "7"
224+
}
225+
171226
# dup
172227
@test dup_1 {
173228
[[ $BATS_RUN_SKIPPED == "true" ]] || skip

exercises/practice/pig-latin/.meta/tests.toml

+3
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,9 @@ description = "first letter and ay are moved to the end of words that start with
3939
[bce94a7a-a94e-4e2b-80f4-b2bb02e40f71]
4040
description = "first letter and ay are moved to the end of words that start with consonants -> word beginning with q without a following u"
4141

42+
[e59dbbe8-ccee-4619-a8e9-ce017489bfc0]
43+
description = "first letter and ay are moved to the end of words that start with consonants -> word beginning with consonant and vowel containing qu"
44+
4245
[c01e049a-e3e2-451c-bf8e-e2abb7e438b8]
4346
description = "some letter clusters are treated like a single consonant -> word beginning with ch"
4447

exercises/practice/pig-latin/test-pig-latin.bats

+7
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,13 @@ load bats-extra
7575
assert_output "atqay"
7676
}
7777

78+
@test word_beginning_with_consonant_and_vowel_containing_qu {
79+
[[ $BATS_RUN_SKIPPED == "true" ]] || skip
80+
run gawk -f pig-latin.awk <<< "liquid"
81+
assert_success
82+
assert_output "iquidlay"
83+
}
84+
7885
# some letter clusters are treated like a single consonant
7986

8087
@test word_beginning_with_ch {

0 commit comments

Comments
 (0)