easycheck icon indicating copy to clipboard operation
easycheck copied to clipboard

Is `check_comparison` needed at all?

Open nyggus opened this issue 1 year ago • 2 comments

The check_comparison() function seems to be reluctant. It works the same way as check_if(), but seems to be less clear. For instance,

check_if(x >= y)

is clearer, and more natural, than

from easycheck import gt

check_comparison(x, gt, y)

Should we deprecate check_comparison()?

nyggus avatar Mar 02 '23 05:03 nyggus