Skip to content

Commit 7e9e026

Browse files
committed
uncomment passing tests
1 parent e46efed commit 7e9e026

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

rust/bowling/tests/bowling.rs

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,6 @@ fn you_cannot_roll_more_than_ten_pins_in_a_single_frame() {
266266
}
267267

268268
#[test]
269-
#[ignore]
270269
fn first_bonus_ball_after_a_final_strike_cannot_score_an_invalid_number_of_pins() {
271270
let mut game = BowlingGame::new();
272271

@@ -295,7 +294,6 @@ fn the_two_balls_after_a_final_strike_cannot_score_an_invalid_number_of_pins() {
295294
}
296295

297296
#[test]
298-
#[ignore]
299297
fn the_two_balls_after_a_final_strike_can_be_a_strike_and_non_strike() {
300298
let mut game = BowlingGame::new();
301299

@@ -325,7 +323,6 @@ fn the_two_balls_after_a_final_strike_cannot_be_a_non_strike_followed_by_a_strik
325323
}
326324

327325
#[test]
328-
#[ignore]
329326
fn second_bonus_ball_after_a_final_strike_cannot_score_an_invalid_number_of_pins_even_if_first_is_strike(
330327
) {
331328
let mut game = BowlingGame::new();
@@ -341,7 +338,6 @@ fn second_bonus_ball_after_a_final_strike_cannot_score_an_invalid_number_of_pins
341338
}
342339

343340
#[test]
344-
#[ignore]
345341
fn if_the_last_frame_is_a_strike_you_cannot_score_before_the_extra_rolls_are_taken() {
346342
let mut game = BowlingGame::new();
347343

@@ -363,7 +359,6 @@ fn if_the_last_frame_is_a_strike_you_cannot_score_before_the_extra_rolls_are_tak
363359
}
364360

365361
#[test]
366-
#[ignore]
367362
fn if_the_last_frame_is_a_spare_you_cannot_create_a_score_before_extra_roll_is_taken() {
368363
let mut game = BowlingGame::new();
369364

@@ -382,7 +377,6 @@ fn if_the_last_frame_is_a_spare_you_cannot_create_a_score_before_extra_roll_is_t
382377
}
383378

384379
#[test]
385-
#[ignore]
386380
fn cannot_roll_after_bonus_roll_for_spare() {
387381
let mut game = BowlingGame::new();
388382

@@ -398,7 +392,6 @@ fn cannot_roll_after_bonus_roll_for_spare() {
398392
}
399393

400394
#[test]
401-
#[ignore]
402395
fn cannot_roll_after_bonus_roll_for_strike() {
403396
let mut game = BowlingGame::new();
404397

0 commit comments

Comments
 (0)