create_all_combinations and create_all_pairs methods would be useful
Sometimes I need to generate all combinations or all pairs of inputs, and then write a custom verify that concatenates and transforms the output of things so that it looks right.
I would like a method that would allow me to create all combinations of inputs so that I can customize what comes after and verify the output with verify_storyboard, or verify, or verify_all, whatever is appropriate
Other options would be good too, I don't necessarily need these particular methods, but basically, I'd like to be able to write a custom verify method, but use the existing approvals code to generate multiple inputs for it
Could you provide an example?
@jmasonlee I see there's this:
def get_best_covering_pairs()
Not sure it's callable by user code...
And internally it's using allpairspy
Is that useful?