Raniz85 / rxpect

A Rust library for fluently building expectations in tests
Apache License 2.0
1 stars 0 forks source link

Ordering expectations #3

Open Raniz85 opened 11 months ago

Raniz85 commented 11 months ago

Expectations on types that implement PartialOrd (or maybe require Ord?)

Raniz85 commented 11 months ago

If we go with PartialOrd

expect(x).to_be_less_than(y)

Should call

y.less_than(x)