> That's exactly how it's done in a few other unittesting frameworks. > Here is the one from Twisted's Trial (http://twistedmatrix.com/), for > instance: Similarly in Ruby: assert_in_delta(expected_float, actual_float, delta) (Test::Unit) actual_float.should be_close(expected_float, delta) (RSpec)