TheBestTvarynka / tbt

Just my personal blog with interesting articles, thoughts, maybe guides/tips
https://tbt.qkation.com
MIT License
1 stars 0 forks source link

Proptest strategies #5

Closed TheBestTvarynka closed 4 months ago

TheBestTvarynka commented 10 months ago
prop_compose! {
    pub fn pattern_example()
    (name in ".*")
    -> MyStruct {
            MyStruct {
                name: name.into()
            }
    }
}