aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test
Commit message (Expand)AuthorAgeFilesLines
...
| * | | | | Improve sql logging coloration in `ActiveRecord::LogSubscriber`.Peter Boling2015-07-171-0/+98
* | | | | | Merge pull request #21535 from dmitry/feature/validate-multiple-contextsRafael Mendonça França2015-09-081-0/+7
|\ \ \ \ \ \
| * | | | | | Validate multiple contexts on `valid?` and `invalid?` at once.Dmitry Polushkin2015-09-071-0/+7
* | | | | | | Merge pull request #21511 from rwz/ar-exceptions-no-argsEileen M. Uchitelle2015-09-081-0/+16
|\ \ \ \ \ \ \
| * | | | | | | Make ActiveRecordException descendants args optionalPavel Pravosud2015-09-071-0/+16
* | | | | | | | Merge pull request #21528 from yui-knk/test/add_tests_for_mysql2_viewYves Senn2015-09-082-64/+66
|\ \ \ \ \ \ \ \ | |_|/ / / / / / |/| | | | | | |
| * | | | | | | Add view tests for MySQLyui-knk2015-09-082-64/+66
| |/ / / / / /
* | | | | | | Revert "Merge pull request #21069 from dmitry/feature/validate-multiple-conte...Rafael Mendonça França2015-09-071-7/+0
* | | | | | | Merge pull request #21069 from dmitry/feature/validate-multiple-contexts-at-onceRafael Mendonça França2015-09-071-0/+7
|\ \ \ \ \ \ \
| * | | | | | | Validate multiple contexts on `valid?` and `invalid?` at once.Dmitry Polushkin2015-07-301-0/+7
* | | | | | | | Typo fix [ci skip]amitkumarsuroliya2015-09-071-1/+1
* | | | | | | | Allow global migrations_path configuration with using value from database_tas...Tobias Bielohlawek2015-09-071-1/+3
* | | | | | | | Fix test failures from premature merge of #21317Matthew Draper2015-09-071-1/+8
* | | | | | | | Merge pull request #21317 from greysteil/support-postgres-drop-index-concurre...Matthew Draper2015-09-072-2/+11
|\ \ \ \ \ \ \ \
| * | | | | | | | Support dropping indexes concurrently in PostgresGrey Baker2015-09-052-2/+11
| | |/ / / / / / | |/| | | | | |
* / | | | | | | Deprecate passing conditions to AR::Relation destroy_all and delete_all methodsWojciech Wnętrzak2015-09-063-2/+14
|/ / / / / / /
* | | | / / / Remove unnecessary require in associations_test.rbakihiro172015-09-031-1/+0
| |_|_|/ / / |/| | | | |
* | | | | | Respect scale of the column in the Decimal typeRafael Mendonça França2015-09-012-0/+33
* | | | | | Make revert of `disable_extension` to workyui-knk2015-08-301-0/+33
* | | | | | pg, `create_schema`, `drop_schema` and `rename_table` quote schema name.Yves Senn2015-08-281-7/+47
* | | | | | PostgreSQL, add `:if_exists` to `#drop_schema`.Yves Senn2015-08-282-11/+22
* | | | | | no more require minitest mockGaurav Sharma2015-08-273-3/+0
* | | | | | Merge pull request #21386 from ronakjangir47/remove_dupsRafael Mendonça França2015-08-264-4/+0
|\ \ \ \ \ \
| * | | | | | Removed duplicate require ‘models/computer’Ronak Jangir2015-08-264-4/+0
* | | | | | | Fix the unused variable warningakihiro172015-08-261-1/+0
|/ / / / / /
* | | | | | Merge pull request #21377 from ronakjangir47/remove_mocha_active_recordKasper Timm Hansen2015-08-2512-119/+153
|\ \ \ \ \ \
| * | | | | | Removed mocha from Active Record Part 1Ronak Jangir2015-08-2512-119/+153
* | | | | | | Make `change_column_default` to workyui-knk2015-08-251-0/+33
* | | | | | | Merge pull request #21342 from yui-knk/test/add_assert_methodRafael Mendonça França2015-08-241-1/+1
|\ \ \ \ \ \ \
| * | | | | | | Add `assert_nothing_raised` to make clear test case perposeyui-knk2015-08-231-1/+1
* | | | | | | | Further fix failing tests caused by #21350Sean Griffin2015-08-241-0/+1
* | | | | | | | Fix failing tests caused by #21350Sean Griffin2015-08-241-0/+1
| |/ / / / / / |/| | | | | |
* | | | | | | Only nullify persisted has_one target associationsAgis-2015-08-244-0/+11
* | | | | | | Remove test helper method to inside test methodyui-knk2015-08-231-5/+1
|/ / / / / /
* | | | | | uniqueness validation raises error for persisted record without pk.Yves Senn2015-08-201-0/+23
* | | | | | Add a native JSON data type support in MySQLRyuta Kamizono2015-08-181-0/+172
* | | | | | Merge pull request #21284 from prakashlaxkar/argument_error_testsYves Senn2015-08-181-0/+8
|\ \ \ \ \ \
| * | | | | | Correct error message in Standard American english and add a test case for th...prakash2015-08-181-0/+13
|/ / / / / /
* | | | | | Merge pull request #19683 from tristang/require-option-for-counter-cacheRafael Mendonça França2015-08-136-5/+48
|\ \ \ \ \ \
| * | | | | | Add tests for associations without counter_cacheTristan Gamilis2015-04-094-0/+43
| * | | | | | Require explicit counter_cache option for has_manyTristan Gamilis2015-04-072-5/+5
* | | | | | | Merge pull request #19770 from vngrs/prevent_duplicated_where_clausesRafael Mendonça França2015-08-132-0/+13
|\ \ \ \ \ \ \
| * | | | | | | Prevent duplicating `where` clauses when model is extended from an abstract c...Mehmet Emin İNAÇ2015-04-152-0/+13
* | | | | | | | descriptive error message when fixtures contian a missing column.Yves Senn2015-08-132-0/+9
* | | | | | | | use `assert_not` instead of `refute` as mentioned in our guides.Yves Senn2015-08-136-21/+21
* | | | | | | | Skip statement cache on through association readerRafael Mendonça França2015-08-128-9/+110
* | | | | | | | Merge pull request #17885 from starbelly/patch-1Yves Senn2015-08-111-6/+6
|\ \ \ \ \ \ \ \
| * | | | | | | | Add run_cmd class method to ActiveRecord::Tasks::DatabaseTasksstarbelly2015-08-011-6/+6
* | | | | | | | | Merge pull request #21165 from manlon/masterRafael Mendonça França2015-08-114-0/+27
|\ \ \ \ \ \ \ \ \
| * | | | | | | | | use correct DB connection for generated HABTM tableMatt Hanlon2015-08-074-0/+27