describe :date_valid_jd?, shared: true do
it do
Date.send(@method, -100).should be_true
Date.send(@method, :number).should be_true
Date.send(@method, Rational(1,2)).should be_true
end
it do
Date.send(@method, nil).should be_false
end
it do
Date.send(@method, false).should be_true
end
end