Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use glob import in default test template (#1819)
Glob imports are a better default for the test template. Some exercises may require the student to implement a method. If the test file doesn't have a glob import, the students will be forced to implement an inherent method on a struct. On the other hand, if a glob import is used, the students may choose to implement it as a method on a trait. Traits are a powerful feature of Rust, so we want to enable students to experiment with them whenever possible.
- Loading branch information