secana@programming.dev to Rust@programming.devEnglish · 5 months agoWhat are you working on this week? (June. 16, 2024)message-squaremessage-square16fedilinkarrow-up116arrow-down11file-text
arrow-up115arrow-down1message-squareWhat are you working on this week? (June. 16, 2024)secana@programming.dev to Rust@programming.devEnglish · 5 months agomessage-square16fedilinkfile-text
minus-squareTehPers@beehaw.orglinkfedilinkEnglisharrow-up3·5 months agoFelt like making an assertions library since I can’t seem to find something quite what I’m looking for.
minus-squaresecana@programming.devOPlinkfedilinkarrow-up1·5 months agoWhat is missing in the existing ones?
minus-squareTehPers@beehaw.orglinkfedilinkEnglisharrow-up4·edit-25 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.