rails/activerecord/test/cases
Jon Leighton 15b7482dfc Merge pull request #8568 from inossidabile/fix-in_clause_length
Correct source for in_clause_length for eager loading (Fix for #8474)
2013-01-11 01:34:43 -08:00
..
adapters Reset test data, and fix bug that the inserted data were not actually selected 2013-01-08 09:12:51 +09:00
associations Merge pull request #8568 from inossidabile/fix-in_clause_length 2013-01-11 01:34:43 -08:00
attribute_methods Remove ActiveRecord::Model 2012-10-26 15:51:02 +01:00
coders ActiveRecord::Coders::YAMLColumn#dump should raise an error 2012-03-26 21:57:39 +02:00
connection_adapters Alias refute methods to assert_not and perfer assert_not on tests 2012-12-31 13:58:52 -03:00
connection_specification Standardize the use of current_adapter? 2013-01-01 19:18:34 -03:00
fixture_set Move/rename files to follow naming conventions 2012-10-07 20:43:18 +02:00
migration Standardize the use of current_adapter? 2013-01-01 19:18:34 -03:00
relation Fix syntax error and remove duplicated test 2013-01-08 20:00:51 -02:00
tasks Style: remove hash noise 2012-09-21 12:08:02 -07:00
validations Added support for validates_uniqueness_of in PostgreSQL array columns. Fixes: #8075. 2012-12-18 08:35:03 -02:00
adapter_test.rb Remove ActiveRecord::Model 2012-10-26 15:51:02 +01:00
aggregations_test.rb remove meaningless AS::FrozenObjectError 2013-01-02 10:04:58 +09:00
ar_schema_test.rb Needs to reset SchemaMigration first, or the tests fail in sqlite3 2013-01-07 07:37:23 +09:00
associations_test.rb Ensure that associations have a symbol argument. 2012-11-28 13:39:42 -08:00
attribute_methods_test.rb Remove not used require and some useless test comments 2012-11-17 23:00:16 -02:00
autosave_association_test.rb Rename update_attributes method to update, keep update_attributes as an alias 2013-01-03 11:51:21 -05:00
base_test.rb Remove unnecessary begin..rescue..end, use only rescue 2013-01-06 15:41:14 +09:00
batches_test.rb Remove extre count, preheat already happens during setup 2012-10-31 12:54:07 -02:00
binary_test.rb Added test to illustrate bad binary blobs. 2012-01-31 13:45:00 -06:00
bind_parameter_test.rb fix todo: use minitest skip instead of return nil 2012-05-13 02:27:52 -05:00
calculations_test.rb fix PG typecasting errors 2012-12-28 19:11:02 -08:00
callbacks_test.rb Fix collisions with before and after validation callbacks. 2012-09-23 12:53:50 -06:00
clone_test.rb please use ruby -I lib:test path/to/test.rb, or export RUBY_OPT 2011-06-06 15:47:13 -07:00
column_alias_test.rb please use ruby -I lib:test path/to/test.rb, or export RUBY_OPT 2011-06-06 15:47:13 -07:00
column_definition_test.rb Add uuid type support to PostgreSQL adapter 2012-06-14 17:44:51 +04:00
column_test.rb Fix error when assigning NaN to an integer column 2013-01-06 16:09:40 -05:00
connection_management_test.rb database connections are automatically established after forking. 2012-02-16 14:33:38 -08:00
connection_pool_test.rb ConnectionPool, unify exceptions, ConnectionTimeoutError 2012-09-11 10:38:27 -04:00
counter_cache_test.rb Fix reset_counters() crashing on has_many :through associations. 2012-10-02 23:49:32 +08:00
custom_locking_test.rb Deprecate ActiveRecord::Base.scoped. 2012-07-27 17:27:47 +01:00
database_statements_test.rb please use ruby -I lib:test path/to/test.rb, or export RUBY_OPT 2011-06-06 15:47:13 -07:00
date_time_test.rb Deprecate obsolete Time to DateTime fallback methods 2012-12-11 13:57:05 +00:00
defaults_test.rb Standardize the use of current_adapter? 2013-01-01 19:18:34 -03:00
deprecated_dynamic_methods_test.rb Merge branch 'master' of github.com:lifo/docrails 2013-01-09 01:04:15 +05:30
dirty_test.rb Rename update_attributes method to update, keep update_attributes as an alias 2013-01-03 11:51:21 -05:00
dup_test.rb Call super to nullify the reference to the original errors object in the dup'ed object (call ActiveModel::Validations#initialize_dup). Closes #7291 2012-10-16 15:09:23 +02:00
explain_subscriber_test.rb Don't explain except normal CRUD sql. 2012-09-17 00:22:34 +09:00
explain_test.rb need to to_a the Relation to execute SQL here 2013-01-04 04:02:23 +09:00
finder_respond_to_test.rb made dynamic finders alias_attribute aware 2012-06-22 16:44:01 +02:00
finder_test.rb CVE-2012-5664 options hashes should only be extracted if there are extra parameters 2013-01-02 13:44:06 -08:00
fixtures_test.rb Rename "Fixtures" class to "FixtureSet" 2012-10-07 19:15:58 +02:00
forbidden_attributes_protection_test.rb Added STI support to init and building associations 2012-11-29 05:50:34 +00:00
habtm_destroy_order_test.rb Destroy association habtm record before destroying the record itself. Fixes issue #402. 2011-07-08 22:26:54 +01:00
helper.rb Add active_support/testing/autorun 2012-12-31 13:57:24 -03:00
hot_compatibility_test.rb Add an explicit test for hot compatibility 2012-09-28 18:08:14 +01:00
i18n_test.rb please use ruby -I lib:test path/to/test.rb, or export RUBY_OPT 2011-06-06 15:47:13 -07:00
inheritance_test.rb User assert_kind_of, invert assert_equal expectations 2012-11-29 09:59:35 -02:00
invalid_date_test.rb Remove unused assignments from activerecord tests 2012-04-29 10:02:58 -07:00
invertible_migration_test.rb Fixes for PR [#8267] 2012-12-22 20:40:42 -05:00
json_serialization_test.rb Fix serializable_hash with xml generation and default :except option 2012-06-22 08:28:26 -03:00
locking_test.rb Rename update_attributes method to update, keep update_attributes as an alias 2013-01-03 11:51:21 -05:00
log_subscriber_test.rb Ignore binds payload with nil column in AR log subscriber 2013-01-08 08:59:41 -02:00
migration_test.rb Fix failing test under sqlite3 2013-01-07 08:23:15 +09:00
migrator_test.rb Reset AR::Migration.verbose change to avoid depending on test run order 2013-01-08 09:12:51 +09:00
mixin_test.rb please use ruby -I lib:test path/to/test.rb, or export RUBY_OPT 2011-06-06 15:47:13 -07:00
modules_test.rb Deprecate ActiveRecord::Base.scoped. 2012-07-27 17:27:47 +01:00
multiparameter_attributes_test.rb Remove unneeded require 2012-10-06 19:31:57 -03:00
multiple_db_test.rb Remove ActiveRecord::Model 2012-10-26 15:51:02 +01:00
named_scope_test.rb Remove ActiveRecord::Base.to_a 2012-08-03 11:51:52 +01:00
nested_attributes_test.rb Namespace HashWithIndifferentAccess 2013-01-07 07:37:23 +09:00
persistence_test.rb Change duplicated test name 2013-01-03 21:26:38 -03:00
pooled_connections_test.rb Remove ActiveRecord::Model 2012-10-26 15:51:02 +01:00
primary_keys_test.rb Standardize the use of current_adapter? 2013-01-01 19:18:34 -03:00
query_cache_test.rb Standardize the use of current_adapter? 2013-01-01 19:18:34 -03:00
quoting_test.rb fix quoting for ActiveSupport::Duration instances 2012-07-04 22:39:16 -05:00
readonly_test.rb Remove ActiveRecord::Base.to_a 2012-08-03 11:51:52 +01:00
reaper_test.rb ConnectionPool wait_timeout no longer used for different types of timeouts. #6441 2012-05-23 12:08:11 -04:00
reflection_test.rb remove duplicated require statements in AR test cases 2012-10-09 21:33:54 +02:00
relation_scoping_test.rb deprecate assert_blank and assert_present. 2013-01-05 18:04:52 +01:00
relation_test.rb Use separate Relation subclasses for each AR class 2012-11-30 14:06:48 +00:00
relations_test.rb deprecate assert_blank and assert_present. 2013-01-05 18:04:52 +01:00
reload_models_test.rb please use ruby -I lib:test path/to/test.rb, or export RUBY_OPT 2011-06-06 15:47:13 -07:00
sanitize_test.rb please use ruby -I lib:test path/to/test.rb, or export RUBY_OPT 2011-06-06 15:47:13 -07:00
schema_dumper_test.rb Support for PostgreSQL's ltree data type. 2013-01-04 21:22:34 +00:00
serialization_test.rb include_root_in_json allows inheritance. 2012-10-31 00:08:36 +09:00
serialized_attribute_test.rb Serialized attribute can be serialized in an integer column 2012-12-21 14:41:13 -03:00
store_test.rb Namespace HashWithIndifferentAccess 2013-01-07 07:37:23 +09:00
test_case.rb load active_support/deprecation in active_support/rails 2012-08-02 21:59:23 +02:00
timestamp_test.rb Use method compilation for association methods 2012-08-10 23:28:08 +01:00
transaction_callbacks_test.rb validate :on option on after_commit and after_rollback callbacks 2012-12-26 11:37:37 +01:00
transaction_isolation_test.rb Rename update_attributes method to update, keep update_attributes as an alias 2013-01-03 11:51:21 -05:00
transactions_test.rb Rename update_attributes method to update, keep update_attributes as an alias 2013-01-03 11:51:21 -05:00
unconnected_test.rb Remove ActiveRecord::Model 2012-10-26 15:51:02 +01:00
validations_repair_helper.rb Simplify repair_validations on AR and make it work with new callbacks. 2010-01-01 03:20:38 +01:00
validations_test.rb Remove mass assignment security from ActiveRecord 2012-09-16 23:58:19 -05:00
xml_serialization_test.rb Fix AR tests due to builder change with nil values / empty strings 2012-09-07 13:31:28 -03:00
yaml_serialization_test.rb No need to require psych since require yaml does that. 2012-01-04 14:29:13 -03:00