aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/helper.rb
Commit message (Collapse)AuthorAgeFilesLines
...
* remove duplicate requires of mocha.Aaron Patterson2012-07-031-1/+0
| | | | | Mocha is already required by AS::TestCase, so remove the duplicate requires.
* Fix logs name consistency.kennyj2012-05-191-0/+16
|
* port some mocha to minitest/mockAaron Patterson2012-05-181-0/+1
|
* Rename some variablesAlexey Muranov2012-05-091-2/+2
| | | | | | Rename some parameters and instance and local variables, mostly in fixtures.rb. Also remove an unused assignment to an instance variable. There are minor code changes.
* fix tests for SQLite3AdapterAndrey Deryabin2012-04-271-1/+1
|
* Remove IdentityMapCarlos Antonio da Silva2012-03-131-3/+0
|
* Get ActiveRecord::TestCase back on its feet, despite deprecation. It ↵Jeremy Kemper2012-02-051-31/+0
| | | | requires SQLCounter which was moved to AR internal tests only.
* fix a typo [ci skip]Vijay Dev2012-02-011-1/+1
|
* Remove deprecation warnings from testsRafael Mendonça França2012-01-311-0/+3
|
* Moving AR::TestCase in to the AR tests directoryAaron Patterson2012-01-241-1/+1
|
* require test/unit and sort test orderAaron Patterson2012-01-061-1/+1
|
* Revert "Regexp.union seems to have different results in 1.8"Carlos Antonio da Silva2012-01-061-3/+3
| | | | | | This reverts commit d80e4ee20e690dfc0f4ec31c41b873d607462872. No need to care about 1.8 anymore, so reverting :)
* do not require a file that is not usedAaron Patterson2012-01-051-0/+1
|
* remove more uses of deprecated logger methodsAaron Patterson2011-12-191-1/+5
|
* Regexp.union seems to have different results in 1.8Aaron Patterson2011-12-081-3/+3
|
* moving ignored regexp to the instanceAaron Patterson2011-12-071-6/+8
|
* speeding up ignored sql testingAaron Patterson2011-12-071-1/+4
|
* If we're going to use a global variable, let's at least namespace itJon Leighton2011-06-121-4/+4
|
* Refactor tests to be less brittleJon Leighton2011-06-121-3/+4
|
* Move BEGIN and COMMIT into IGNORED_SQL rather than having them as a special ↵Jon Leighton2011-06-121-1/+1
| | | | case in assert_queries
* Print out information about whether the identity map is on or off when ↵Jon Leighton2011-06-091-5/+6
| | | | running unit tests
* do not muck with the load path, that is the test task responsibilityAaron Patterson2011-06-061-6/+0
|
* Refactor Active Record test connection setup. Please see the ↵Jon Leighton2011-06-041-8/+10
| | | | 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.
* Disable IdentityMap by default for ActiveRecord testingAkira Matsuda2011-05-281-2/+2
| | | | because enabling IM by default will possibly hide some bugs on 3.1 default behavior
* Namespace Fixtures in ActiveRecordJason Noble2011-05-071-1/+1
| | | [Fixes #439]
* Run tests without IdentityMap when IM=false is given.Emilio Tagua2011-02-151-1/+1
|
* Merge remote branch 'rails/master' into identity_mapEmilio Tagua2011-02-151-35/+34
|\ | | | | | | | | | | | | | | | | | | | | | | Conflicts: activerecord/examples/performance.rb activerecord/lib/active_record/association_preload.rb activerecord/lib/active_record/associations.rb activerecord/lib/active_record/associations/association_proxy.rb activerecord/lib/active_record/autosave_association.rb activerecord/lib/active_record/base.rb activerecord/lib/active_record/nested_attributes.rb activerecord/test/cases/relations_test.rb
| * refactor fixtures to do less work in the constructorAaron Patterson2011-02-111-1/+1
| |
| * ignore max identifier length queries from pgAaron Patterson2011-02-081-1/+1
| |
| * we do not use this method, so deleteAaron Patterson2011-02-071-12/+0
| |
| * update ignored SQL for oracleAaron Patterson2011-02-071-1/+1
| |
| * removing some freedom patches. use notification system to count sql queriesAaron Patterson2011-02-071-17/+18
| |
| * adjust query counts to be consistent across databases, make sure database ↵Aaron Patterson2011-02-041-1/+1
| | | | | | | | log the same things
| * In a number of places in the tests, we only need to turn off transactional ↵Jon Leighton2011-01-111-0/+4
| | | | | | | | fixtures when the DB does not support savepoints. This speeds the test run up by about 8-9% on my computer, when running rake test_sqlite3_mem :)
| * Enable the sqlite3 in-memory test connection to workJon Leighton2011-01-111-5/+11
| |
* | Merge remote branch 'rails/master' into identity_mapEmilio Tagua2010-12-201-5/+0
|\| | | | | | | | | | | | | | | Conflicts: activerecord/lib/active_record/associations/association_proxy.rb activerecord/lib/active_record/autosave_association.rb activerecord/lib/active_record/base.rb activerecord/lib/active_record/persistence.rb
| * do not require ruby-debug automatically. please require it if you have ↵Aaron Patterson2010-11-191-5/+0
| | | | | | | | declared it as a dependency
* | Set Identity Map disabled by default. Enable it for testing.Emilio Tagua2010-11-191-0/+3
| |
* | IdentityMap - misc fixesMarcin Raczkowski2010-11-191-1/+8
|/ | | | | | - Added IdentityMap to be included into AR::Base - Fixed bug with Mysql namespace missing when running tests only for sqlite - Added sqlite as default connection
* converted exec to exec_query for sqliteAaron Patterson2010-11-051-3/+3
|
* ignoring certain SQL when using OracleAaron Patterson2010-11-031-0/+4
|
* exec returns an AR::ResultAaron Patterson2010-10-261-0/+8
|
* fixing tests. wooAaron Patterson2010-09-211-4/+7
|
* providing arel with column information when possible [#5392 state:resolved]Aaron Patterson2010-09-211-0/+9
|
* Move helper methods to helper.rb. Make test not depend on local TZ to pass ↵Emilio Tagua2010-09-211-0/+14
| | | | | | or fail. Signed-off-by: José Valim <jose.valim@gmail.com>
* Implemented ActiveRecord::Migrations#copy based on James Adam's ideaPiotr Sarnacki2010-09-031-0/+18
| | | | | | | | | | | | | | | ActiveRecord::Migration#copy allows to copy migrations from one place to another, changing migrations versions and adding scope to filename. For example: ActiveRecord::Migration.copy("db/migrate", :blog_engine => "vendor/gems/blog/db/migrate") will copy all migrations from vendor/gems/blog/db/migrate to db/migrate with such format: Versions of copied migrations will be reversioned to be appended after migrations that already exists in db/migrate
* restricts a test to < 1.9, and rewrites it using a proper expectationXavier Noria2010-03-131-0/+1
| | | | Signed-off-by: wycats <wycats@gmail.com>
* Make many parts of Rails lazy. In order to facilitate this,wycats2010-03-071-0/+1
| | | | | | | | | | | | add lazy_load_hooks.rb, which allows us to declare code that should be run at some later time. For instance, this allows us to defer requiring ActiveRecord::Base at boot time purely to apply configuration. Instead, we register a hook that should apply configuration once ActiveRecord::Base is loaded. With these changes, brings down total boot time of a new app to 300ms in production and 400ms in dev. TODO: rename base_hook
* activerecord test load pathsJoshua Peek2010-02-281-0/+3
|
* Revert "Fix test load paths for those not using bundler"Carlhuda2010-02-231-4/+1
| | | | | | This reverts commit eec2d301d4ce9df9c71c1a5aa63053eb970b6818. This commit broke tests. You cannot have a file called "bundler" on the load path.