Hello team, I have a simple cop proposal, the idea is to enforce the usage of `create_pair` instead of `create_list` of 2. ``` # @example # # bad # create_list(:foo, 2) # # # good # create_pair(:foo) # ``` Let me know if it make sense to you. Thanks.