()
| 321 | |
| 322 | #[test] |
| 323 | fn test_finished_exercise() { |
| 324 | let exercise = Exercise { |
| 325 | name: "finished_exercise".into(), |
| 326 | path: PathBuf::from("tests/fixture/state/finished_exercise.rs"), |
| 327 | mode: Mode::Compile, |
| 328 | hint: String::new(), |
| 329 | }; |
| 330 | |
| 331 | assert_eq!(exercise.state(), State::Done); |
| 332 | } |
| 333 | |
| 334 | #[test] |
| 335 | fn test_exercise_with_output() { |
nothing calls this directly
no outgoing calls
no test coverage detected