Serge Matveenko

Results 92 comments of Serge Matveenko

It seems like it this was about one 502d983 commit not all four that shown on this pull request. Am I right?

@caitifbrito could you please squash the correct commits into single one and rebase it on actual `master` branch. Thank you very much! Also it will be great to have tests...

@collinanderson could you please provide exact steps to reproduce this problem

@paulo-raca it looks like something that solves it and even looks gorgeous. Thanks for your work!

@WoLpH I'm happy with #208. Feel free to close this one if it looks redundant to you now.

@sloria I think the main problem here that the field's schema and the data being returned on serialization are mixed up. So, thinking from the architectural point of view first...

@lafrech I believe, this issue is exactly about this

How about parametrizing fixtures instead? Maybe, utilizing `case` syntax. Something like ```rust #[fixture(foo, case("a"), case("b"))] fn fx(foo: &str) -> String { String::from(foo) } #[rstest] fn my_test(fx: String) {} ``` Which...