Nullable!int().should.beNull tests that the Nullable is null. should.not.beNull tests the reverse.
Nullable!int().should.beNull; Nullable!int(5).should.not.beNull;
Object.init.should.beNull;
See Implementation
Nullable!int().should.beNull tests that the Nullable is null. should.not.beNull tests the reverse.