DeepLcom / sql-mock

A Python library to test your SQL models using mocked input data
MIT License
33 stars 5 forks source link

Added functionality to assert_equal independent of the order #2

Closed Somtom closed 11 months ago

Somtom commented 11 months ago

Problem

Currently, when calling .assert_equal, we always depend on the order of "rows" in the list of dictionaries. We should have the ability to also compare ignoring the order

What changed