aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #1163 from amatsuda/sexier_migration_31Aaron Patterson2011-11-041-0/+20
|\ | | | | Sexier migrations
| * Tests for new create_table DSLAkira Matsuda2011-05-201-0/+20
| |
* | Merge pull request #3507 from jmazzi/issue-3503Jeremy Kemper2011-11-031-0/+15
| | | | | | | | Preserve SELECT columns on the COUNT for finder_sql when possible
* | Fix #3271.Jon Leighton2011-11-031-0/+6
| | | | | | | | | | | | | | | | Building the conditions of a nested through association could potentially modify the conditions of the through and/or source association. This is a Bad Thing.
* | Remove all revelant through records.Jon Leighton2011-11-031-0/+15
| | | | | | | | | | | | | | | | | | If a record is removed from a has_many :through, all of the join records relating to that record should also be removed from the through association's target. (Previously the records were removed in the database, but only one was removed from the in-memory target array.)
* | Fix adding multiple instances of the same record to a has_many :through.Jon Leighton2011-11-031-0/+10
| | | | | | | | Fixes #3425.
* | Fix #3247.Jon Leighton2011-11-031-0/+5
| | | | | | | | | | Fixes creating records in a through association with a polymorphic source type.
* | assert_match takes a regexp and a string in that orderVijay Dev2011-10-311-1/+1
| |
* | dump_schema_information: explicitly order inserts into schema_migrations tableLaust Rud Jacobsen2011-10-311-0/+9
| | | | | | | | | | | | | | This change reduces churn in the db/development_structure.sql file when using :sql as active_record.schema_format, and makes comparing diffs much easier. Test ensures the output SQL-statements are lexically ordered by version.
* | Added failing test case for changing schema in migration not clearing the ↵Joe Van Dyk2011-10-271-0/+12
| | | | | | | | prepared statement cache
* | More checks for instance writers.Arun Agrawal2011-10-271-1/+2
| |
* | Adding more checks for instance_writer falseArun Agrawal2011-10-271-1/+2
| |
* | Test fix Allow instances to disable record_timestampsArun Agrawal2011-10-271-1/+1
| | | | | | | | Removed here 0d0176c4ffe5c58fd1002efbd8f7bd45a8872e33
* | Allow instances to disable record_timestampsPratik Naik2011-10-261-0/+10
| |
* | Merge branch 'master' of github.com:rails/railsDavid Heinemeier Hansson2011-10-258-13/+100
|\ \
| * | preserve decimal column attributes after migrationGreg Reinacker2011-10-211-0/+36
| | |
| * | Merge pull request #3258 from ileitch/3-1-stableAaron Patterson2011-10-201-0/+16
| | | | | | | | | | | | Postgres: Do not attempt to deallocate a statement if the connection is no longer active.
| * | only use now() on pg!Aaron Patterson2011-10-181-1/+3
| | |
| * | reset prepared statement when schema changes imapact statement results. ↵Aaron Patterson2011-10-181-0/+8
| | | | | | | | | | | | fixes #3335
| * | use now() for dates in pgAaron Patterson2011-10-181-1/+1
| | |
| * | Merge pull request #3340 from surfacedamage/exclude_destroy_in_all_blank_checkJosé Valim2011-10-171-0/+8
| |\ \ | | | | | | | | Exclude _destroy parameter in :all_blank check (issue #2937)
| | * | Exclude _destroy parameter in :all_blank check (issue #2937)Aaron Christy2011-10-171-0/+8
| | | |
| * | | Merge pull request #3334 from mperham/masterAaron Patterson2011-10-161-5/+5
| |\ \ \ | | | | | | | | | | Default timestamps to non-null
| | * | | Default timestamps to non-nullMike Perham2011-10-141-5/+5
| | |/ /
| * / / fix to remove warning in test casesVishnu Atrai2011-10-161-2/+2
| |/ /
| * | Includes stale record in StaleObjectErrorChristian Bäuerlein2011-10-141-1/+18
| | |
| * | Rails 4 is just around the corner. Stuck with 1.8 until then.Jeremy Kemper2011-10-131-3/+3
| | |
| * | Tests gotta run in 1.8 tooJeremy Kemper2011-10-131-2/+2
| | |
* | | Fix that changing a store should mark the store attribute as changedDavid Heinemeier Hansson2011-10-251-0/+5
|/ /
* | Added ActiveRecord::Base.store for declaring simple single-column key/value ↵David Heinemeier Hansson2011-10-133-0/+31
| | | | | | | | stores [DHH]
* | ambiguous first argument; put parentheses or even spaces Warning removed!Arun Agrawal2011-10-101-2/+2
| |
* | Use broken YAML that will fail with Syck as well as Psych. Fixes ↵Jon Leighton2011-10-091-2/+2
| | | | | | | | | | | | test_broken_yaml_exception in fixtures_test.rb on Ruby 1.8.7. Cherry-pick from 3-1-stable: b8d46924e70e0847e92e1d2dbaaec8c11381072c
* | Remove stray whitespaceJeremy Kemper2011-10-091-4/+1
| |
* | Only use LOWER for mysql case insensitive uniqueness check when column has a ↵Joseph Palermo2011-10-094-1/+96
| | | | | | | | case sensitive collation.
* | Fixed BodyProxy.new for tests! for wrong argumentArun Agrawal2011-10-081-1/+1
| |
* | Merge pull request #3232 from Juanmcuello/pg_prepared_statementsAaron Patterson2011-10-061-0/+19
|\ \ | | | | | | Use the schema_search_path in prepared statements.
| * | refs #3232. Prepared statements and postgreSQL schemas.Juan M. Cuello2011-10-051-0/+19
| | | | | | | | | | | | | | | Add tests for prepared statements with multiple schemas in postgreSQL.
* | | Transactional fixtures enlist all active database connections.Jeremy Kemper2011-10-055-4/+38
| | | | | | | | | | | | You can use multiple databases in your tests without disabling transactional fixtures.
* | | Raise an exception on unknown primary key inside AssociationReflection.Jon Leighton2011-10-051-0/+15
| | | | | | | | | | | | | | | An association between two models cannot be made if a relevant key is unknown, so fail fast rather than generating invalid SQL. Fixes #3207.
* | | Revert "Raise error on unknown primary key."Jon Leighton2011-10-053-18/+4
|/ / | | | | | | This reverts commit ee2be435b1e5c0e94a4ee93a1a310e0471a77d07.
* | Raise error on unknown primary key.Jon Leighton2011-10-053-4/+18
| | | | | | | | | | If we don't have a primary key when we ask for it, it's better to fail fast. Fixes GH #2307.
* | To support ActiveRecord unit tests for IBM DB2Yasuo Honda2011-10-021-0/+2
| |
* | Don't call self.class unless necessary. Closes #3171.Jon Leighton2011-09-291-0/+1
| |
* | Fixed failed test under 1.8.7 as map.keys order in indeterminableRocky Jaiswal2011-09-282-2/+2
| |
* | Don't require a DB connection when setting primary key.Jon Leighton2011-09-261-0/+16
| | | | | | | | Closes #2807.
* | Merge pull request #3030 from htanata/fix_habtm_select_query_methodJon Leighton2011-09-262-0/+16
| | | | | | | | Fix: habtm doesn't respect select query method
* | Fix belongs_to polymorphic with custom primary key on target.Jon Leighton2011-09-262-1/+8
| | | | | | | | Closes #3104.
* | CollectionProxy#replace should change the DB records rather than just ↵Jon Leighton2011-09-261-0/+11
| | | | | | | | mutating the array. Fixes #3020.
* | fix test error when running with postgresql.Arun Agrawal2011-09-181-2/+4
| | | | | | | | | | This Sqlite3 should be in if block. Was giving error because sqlite3 is not loaded
* | Fixed test for JRuby. Arun Agrawal2011-09-181-1/+2
| | | | | | for Sqlite3 in AR-JDBC.It's Jdbc::SQLite3::VERSION