ActiveSupport is not strict enough in parsing dates: `"2012-02-01foo".to_date` should be error not Date. ``` ruby context 'strict validation to_date' do specify { subject.parse('2012-02-01foo').should be_error("invalid date: '2012-02-01foo'") } end ```
ActiveSupport is not strict enough in parsing dates:
"2012-02-01foo".to_dateshould be error not Date.