secana@programming.dev to Rust@programming.devEnglish · 5 months agoWhat are you working on this week? (June. 16, 2024)message-squaremessage-square5fedilinkarrow-up11arrow-down10file-text
arrow-up11arrow-down1message-squareWhat are you working on this week? (June. 16, 2024)secana@programming.dev to Rust@programming.devEnglish · 5 months agomessage-square5fedilinkfile-text
minus-squareTehPers@beehaw.orglinkfedilinkEnglisharrow-up0·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-up0·5 months agoWhat is missing in the existing ones?
minus-squareTehPers@beehaw.orglinkfedilinkEnglisharrow-up1·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.