does the rust community have any opinions on having multiple assertions per #[test]
Conversation
Replying to
I'm not a rustacean or whatever but why duplicate code unnecessarily?
DRY can and sometimes should be internally avoided in test code. Except in cases where it would make refactorings of tested code very slow or difficult.


