Closed ono-max closed 6 months ago
Issues
0 New issues
0 Accepted issues
Measures
0 Security Hotspots
No data about Coverage
0.0% Duplication on New Code
Thanks! There's some loose ends when duplicates are present but now the intent is clar, so that's OK for now.
Currently, we do not verify the order of JSON at https://github.com/launchableinc/cli/blob/main/tests/cli_test_case.py#L221 because we evaluate JSON in an order-agnostic manner. However, we aim to ensure the order of test paths is accurate.
assert_json_orderless_equal
disregards the order of items intentionally. Consequently, I have introduced theassert_test_path_orderly_equal
method to address this requirement, instead of modifyingassert_json_orderless_equal
.@kohsuke
I think you designed these methods in https://github.com/launchableinc/cli/pull/91. Can you take a look at this PR?