aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/validations_test.rb
Commit message (Expand)AuthorAgeFilesLines
* Add validation to subclass in tests to avoid polluting parent classChris Salzberg2019-04-131-5/+7
* Add test case for ce48b5a366482d4b4c4c053e1e39e79d71987197Ryuta Kamizono2018-12-181-0/+7
* Fix numericality validator not to be affected by custom getterRyuta Kamizono2018-08-131-1/+17
* Replace `assert !` with `assert_not`Daniel Colson2018-04-191-2/+2
* Use assert_predicate and assert_not_predicateDaniel Colson2018-01-251-6/+6
* Suppress `warning: BigDecimal.new is deprecated` in activerecordYasuo Honda2017-12-131-2/+2
* Use frozen-string-literal in ActiveRecordKir Shatrov2017-07-191-0/+2
* Revert "Merge pull request #29540 from kirs/rubocop-frozen-string"Matthew Draper2017-07-021-1/+0
* Enforce frozen string in RubocopKir Shatrov2017-07-011-0/+1
* Fix regression in Numericality validator where extra decimal places on Bradley Priest2017-05-271-0/+14
* Creating a new Topic class instead of class_eval for the existing oneYasuo Honda2016-08-111-4/+2
* remove redundant curlies from hash argumentsXavier Noria2016-08-061-1/+1
* modernizes hash syntax in activerecordXavier Noria2016-08-061-4/+4
* applies new string literal convention in activerecord/testXavier Noria2016-08-061-11/+11
* remove args from assert_nothing_raised in testsTara Scherner de la Fuente2016-02-221-1/+1
* `validates_acceptance_of` shouldn't require a database connectionSean Griffin2015-09-251-0/+11
* Validate multiple contexts on `valid?` and `invalid?` at once.Dmitry Polushkin2015-09-071-0/+7
* Revert "Merge pull request #21069 from dmitry/feature/validate-multiple-conte...Rafael Mendonça França2015-09-071-7/+0
* Validate multiple contexts on `valid?` and `invalid?` at once.Dmitry Polushkin2015-07-301-0/+7
* Allow a symbol to be passed to `attribute`, in place of a type objectSean Griffin2015-02-061-1/+1
* Removed magic comments # encoding: utf-8 , since its default from ruby 2.0 on...Vipul A M2015-02-031-1/+0
* Ensure numericality validations work with mutationSean Griffin2014-12-011-0/+13
* Build fix when running in isolationArun Agrawal2014-11-141-0/+1
* Add AR::Base#validate! methodBogdan Gusiev2014-06-231-0/+14
* Merge pull request #10662 from take/change-test-name-for-ActiveRecord--Valida...Carlos Antonio da Silva2014-05-111-9/+9
|\
| * Refactor AR's validations_test.rbTakehiro Adachi2013-12-031-9/+9
* | ActiveRecord/ActiveModel '#validate' alias for 'valid?'Henrik Nyh2014-03-271-0/+15
* | Prefer assert_raise instead of flunk + rescue to test for exceptionsCarlos Antonio da Silva2013-12-191-5/+3
|/
* Typo fixes [ci skip]Akshay Vishnoi2013-11-301-1/+1
* Remove mass assignment security from ActiveRecordGuillermo Iguaran2012-09-161-6/+0
* remove tests for #with_scope (it's now deprecated)Jon Leighton2012-04-251-24/+0
* Deprecate set_table_name in favour of self.table_name= or defining your own m...Jon Leighton2011-11-291-1/+1
* please use ruby -I lib:test path/to/test.rb, or export RUBY_OPTAaron Patterson2011-06-061-1/+1
* Refactor Active Record test connection setup. Please see the RUNNING_UNIT_TES...Jon Leighton2011-06-041-1/+1
* Cleanup deprecation warnings in active recordCarlos Antonio da Silva2010-09-061-43/+0
* removing unused models from testsSubba Rao Pasupuleti2010-07-211-5/+0
* Validators should at model level and not at AR:Base level [Closes #4804]Neeraj Singh2010-06-101-0/+10
* Fix failing test.José Valim2010-05-211-6/+6
* Replace assert with assert_equal in some test casesNeeraj Singh2010-05-211-2/+2
* Remove undocumented save_without_validation!Pratik Naik2010-05-111-6/+0
* Make sure valid? preceives the context as in ActiveModel API (ht: Carlos Anto...José Valim2010-05-101-0/+17
* updated AR to work with the AMo model validation changesJosh Kalderimis2010-05-081-1/+1
* test_validates_acceptance_of_as_database_column fixedSantiago Pastorino2010-02-051-3/+3
* Ensure deprecated validate methods are invoked when they are private [#3214 s...José Valim2010-01-181-1/+18
* save(false) is gone, use save(:validate => false) instead.José Valim2010-01-171-1/+9
* Simplify repair_validations on AR and make it work with new callbacks.José Valim2010-01-011-14/+14
* Don't publicize with_scope for tests since it may shadow public misuseJeremy Kemper2009-12-281-3/+3
* Move validator, human_name and human_attribute_name to ActiveModel, remove de...José Valim2009-10-201-31/+0
* Fix default_error_messages back to the original messageAkira Matsuda2009-09-111-3/+6
* Changed ActiveRecord to use new callbacks and speed up observers by only noti...José Valim2009-09-081-6/+3