What are you working on this week? (June. 16, 2024) secana ( @secana@programming.dev ) Rust@programming.devEnglish • 6 months ago message-square13fedilinkarrow-up114
arrow-up114message-squareWhat are you working on this week? (June. 16, 2024) secana ( @secana@programming.dev ) Rust@programming.devEnglish • 6 months ago message-square13fedilink
minus-square TehPers ( @TehPers@beehaw.org ) linkfedilinkEnglish3•6 months agoFelt like making an assertions library since I can’t seem to find something quite what I’m looking for.
minus-square secana ( @secana@programming.dev ) OPlinkfedilink1•6 months agoWhat is missing in the existing ones?
minus-square TehPers ( @TehPers@beehaw.org ) linkfedilinkEnglish4•edit-26 months agoI was mostly looking for something more composable, similar to how jest works. Some ideas that I’ve been working on are assertions like: expect!([1, 2, 3]) .all() .to_be_less_than(5); I also have some ideas around futures that I’d like to play with.
Felt like making an assertions library since I can’t seem to find something quite what I’m looking for.
What is missing in the existing ones?
I was mostly looking for something more composable, similar to how
jest
works. Some ideas that I’ve been working on are assertions like:I also have some ideas around futures that I’d like to play with.