You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Tests marked with #[ignore] still have to type check in order to compile, so you more or less have to complete the exercise to get the first test to pass. In order to better facilitate incremental development using TDD practices, I suggest we actually comment out the tests instead of annotating them.
The text was updated successfully, but these errors were encountered:
Thanks you for pointing that out. We have another discussion #269 about placeholder lib.rs files. If we provide those with the right signatures this one became a non-issue because the empty exercises will compile without an issue as all tests will compile. Would that be a good solution for you?
I'm okay with either approach, though I think I mildly prefer having users write functions from scratch, as learning how to appease the typechecker is a large part of learning rust.
Tests marked with
#[ignore]
still have to type check in order to compile, so you more or less have to complete the exercise to get the first test to pass. In order to better facilitate incremental development using TDD practices, I suggest we actually comment out the tests instead of annotating them.The text was updated successfully, but these errors were encountered: