(should-not (zerop 0.0e+NaN))
(should-not (zerop float-pi))
(should-not (zerop 1.0e+INF))
- (should-not (zerop (random most-positive-fixnum)))
- (should-not (zerop (- (random (- most-negative-fixnum)))))
+ (should-not (zerop (1+ (random most-positive-fixnum))))
+ (should-not (zerop (- (1- (random (- most-negative-fixnum))))))
(should-not (zerop (1+ most-positive-fixnum)))
(should-not (zerop (1- most-negative-fixnum)))
(should-error (zerop "-5") :type 'wrong-type-argument))