aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/timestamp_test.rb
Commit message (Collapse)AuthorAgeFilesLines
* Allow instances to disable record_timestampsPratik Naik2011-10-261-0/+10
|
* fix typoAlexandr Zykov2011-06-081-1/+1
|
* This way asserting that updated_at was changed in touch look more obvious.Dmitriy Kiriyenko2011-06-071-0/+1
|
* Do not use default_scope in ActiveRecord::Persistence#touch.Dmitriy Kiriyenko2011-06-071-0/+9
|
* 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 ↵Jon Leighton2011-06-041-1/+1
| | | | RUNNING_UNIT_TESTS file for details, but essentially you can now configure things in test/config.yml. You can also run tests directly via the command line, e.g. ruby path/to/test.rb (no rake needed, uses default db connection from test/config.yml). This will help us fix the CI by enabling us to isolate the different Rails versions to different databases.
* Isolated PostgreSQL test into PostgreSQL folderPrem Sichanugrist2011-05-311-20/+0
|
* Reduce test noiseJon Leighton2011-05-311-20/+14
|
* supporting infinity and -infinity for timestamps in PG. fixes #544Aaron Patterson2011-05-131-0/+26
|
* Added new #update_column method.Sebastian Martinez2011-03-271-1/+2
| | | | Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
* Revert "Removed #update_attribute method. New #update_column method."Sebastian Martinez2011-03-271-4/+2
| | | | | | This reverts commit 45c233ef819dc7b67e259dd73f24721fec28b8c8. Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
* Removed #update_attribute method. New #update_column method.Sebastian Martinez2011-03-261-2/+4
| | | | Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
* Implement and test private method all_timestamp_attributes_in_modelFranck Verrot2011-02-021-0/+5
| | | | Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
* Test timestamp_attributes_for_update_in_model that was already in placeFranck Verrot2011-02-021-0/+5
| | | | Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
* Added timestamp_attributes_for_create_in_modelFranck Verrot2011-02-021-0/+5
| | | | Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
* Test private method all_timestamp_attributesFranck Verrot2011-02-021-0/+5
| | | | Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
* Test private method timestamp_attributes_for_updateFranck Verrot2011-02-021-0/+5
| | | | Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
* Test private method timestamp_attributes_for_createFranck Verrot2011-02-021-0/+5
| | | | Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
* removing many unused variablesAaron Patterson2010-11-161-1/+1
|
* restore behavior of touch for models without :updated_xx [#5439 state:resolved]tnp2010-09-241-5/+13
| | | | Signed-off-by: José Valim <jose.valim@gmail.com>
* @user.touch should not fail if User does not have updated_at/updated_on column.Neeraj Singh2010-08-241-1/+7
| | | | | | [#5439 state:resolved] Signed-off-by: José Valim <jose.valim@gmail.com>
* Add test case for ActiveRecord::Base.record_timestamps = falseWincent Colaiuta2010-08-241-0/+10
| | | | | | | | This is a failing test case for Lighthouse ticket #5440: https://rails.lighthouseapp.com/projects/8994/tickets/5440 Signed-off-by: José Valim <jose.valim@gmail.com>
* Restore pet -> owner relationship to the previous stateSantiago Pastorino2010-08-161-1/+1
| | | | [#5365]
* added testcase for belongs_to with a counter_cache and touchMark Turner2010-08-161-0/+16
| | | | | | [#5365 state:committed] Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
* Deletes trailing whitespaces (over text files only find * -type f -exec sed ↵Santiago Pastorino2010-08-141-14/+14
| | | | 's/[ \t]*$//' -i {} \;)
* move reload after touchBrian Lopez2010-08-021-1/+1
|
* reload the owner model after updateBrian Lopez2010-08-021-0/+1
|
* Add an internal (private API) after_touch callback. [#5271 state:resolved]José Valim2010-08-021-4/+4
|
* added failing touch propagation testJakub Kuźma2010-08-021-0/+17
| | | | Signed-off-by: José Valim <jose.valim@gmail.com>
* with this fix touch method - does not call validations - doest not call ↵Neeraj Singh2010-07-131-0/+10
| | | | | | | | callbacks - updates updated_at/on along with attribute if attribute is provided - marks udpated_at/on and attribute as NOT changed [#2520 state:resolved] Signed-off-by: José Valim <jose.valim@gmail.com>
* Final iteration of use better testing methodsNeeraj Singh2010-05-191-8/+8
| | | | | | [#4652 state:resolved] Signed-off-by: José Valim <jose.valim@gmail.com>
* Added :touch option to belongs_to associations that will touch the parent ↵David Heinemeier Hansson2009-04-161-1/+46
| | | | record when the current record is saved or destroyed [DHH]
* Added ActiveRecord::Base#touch to update the updated_at/on attributes with ↵David Heinemeier Hansson2009-04-161-0/+30
the current time [DHH]