rails/activerecord/test/cases
2010-01-18 04:28:21 +05:30
..
associations Make scopes use relations under the hood 2010-01-16 00:02:46 +05:30
attributes Fixed: #without_typecast should only disable typecasting on the duplicated attributes [#3387 state:resolved] 2009-10-18 10:22:22 -05:00
types Refactoring attributes/types [#3348 state:resolved] 2009-10-17 12:37:15 -05:00
validations Ensure new validates works with uniqueness validator. 2010-01-08 23:50:31 +01:00
active_schema_test_mysql.rb Make sure recreate MySQL test database with the proper encoding and collation [#1165 state:resolved] 2008-10-03 22:08:55 +02:00
active_schema_test_postgresql.rb PostgreSQL: update create_database_with_encoding test also 2008-06-07 13:43:52 -07:00
adapter_test.rb Merge commit 'rails/master' 2009-08-10 18:07:33 -03:00
aggregations_test.rb Cherry-pick core extensions 2009-05-13 12:00:15 -07:00
ar_schema_test.rb Autoload ActiveRecord files 2008-11-24 11:14:24 -06:00
associations_test.rb When passing force_reload = true to an association, don't use the query cache [#1827 state:resolved] 2009-12-16 10:49:53 -06:00
attribute_methods_test.rb 1=2 is invalid expression in Oracle SELECT 2009-08-06 23:40:59 +03:00
autosave_association_test.rb save(false) is gone, use save(:validate => false) instead. 2010-01-17 14:22:34 +01:00
base_test.rb Make merging of order values consistent 2010-01-17 14:19:41 +05:30
batches_test.rb Add new finder methods to association collection. 2009-12-27 00:25:00 +05:30
binary_test.rb Remove SQL Server cases from tests for latest adapter work to pass rails expected behavior. 2008-11-19 18:00:56 +01:00
calculations_test.rb Migrate all the calculation methods to Relation 2009-12-29 04:30:04 +05:30
callbacks_observers_test.rb Refactor new callbacks and AR implementation. 2009-09-08 10:26:39 -05:00
callbacks_test.rb Ensure before_validation and after_validation accepts :on as option. 2010-01-06 22:24:16 +01:00
column_alias_test.rb Merge branch 'ar-test-cleanup' of git://git.geeksomnia.com/rails 2008-01-21 17:20:51 +00:00
column_definition_test.rb AR should respect default values for MySQL BINARY and VARBINARY columns. 2009-08-09 21:05:26 -07:00
connection_pool_test.rb Add test case for ActiveRecord::ConnectionAdapters::ConnectionManagement. 2009-02-25 12:48:53 -06:00
connection_test_firebird.rb Merge branch 'ar-test-cleanup' of git://git.geeksomnia.com/rails 2008-01-21 17:20:51 +00:00
connection_test_mysql.rb Enable use of MySQL stored procedures by default. 2009-09-17 10:57:03 -07:00
copy_table_test_sqlite.rb Missing customers fixture 2009-11-13 10:38:23 -08:00
database_statements_test.rb Oracle needs sequence value for primary key in INSERT statement 2009-08-06 23:40:59 +03:00
datatype_test_postgresql.rb Fixed tests of postgresql money insertion when non-C locale 2009-02-06 13:39:07 +13:00
date_time_test.rb Revert "fallback_string_to_date sets Date._parse comp arg to true, so that strings with two-digit years, e.g. '1/1/09', are interpreted as modern years" [#2019 state:wontfix] 2009-08-05 08:26:12 -05:00
default_test_firebird.rb Merge branch 'ar-test-cleanup' of git://git.geeksomnia.com/rails 2008-01-21 17:20:51 +00:00
defaults_test.rb Merge commit 'origin/master' into savepoints 2008-12-03 19:30:35 +01:00
deprecated_finder_test.rb Fix file permissions 2008-07-31 16:36:23 -05:00
dirty_test.rb Replace Model.first(options) with new finder methods inside tests 2009-12-27 01:50:03 +05:30
finder_respond_to_test.rb Ensure that respond_to? considers dynamic finder methods. Closes #11538. [floehopper] 2008-04-06 22:26:15 +00:00
finder_test.rb Don't publicize with_scope for tests since it may shadow public misuse 2009-12-28 14:07:23 -08:00
fixtures_test.rb reduce max size of fixture IDs to fix sqlite2 tests, because sqlite2 was getting negative and changing values for ID field. See http://www.sqlite.org/datatypes.html 2010-01-12 11:01:49 -08:00
helper.rb Autoload AR test case 2010-01-04 16:50:01 -06:00
i18n_test.rb Move validator, human_name and human_attribute_name to ActiveModel, remove deprecated error messages and add i18n_scope and lookup_ancestors. 2009-10-20 17:52:32 -07:00
inheritance_test.rb Changed ActiveRecord::Base.store_full_sti_class to be true by default reflecting the previously announced Rails 3 default [DHH] 2010-01-03 19:30:28 -08:00
invalid_date_test.rb Oracle adapter returns Time value for DATE columns 2009-08-06 23:40:59 +03:00
json_serialization_test.rb Fix AR json encoding 2009-06-08 19:37:51 -07:00
lifecycle_test.rb Refactor new callbacks and AR implementation. 2009-09-08 10:26:39 -05:00
locking_test.rb Don't publicize with_scope for tests since it may shadow public misuse 2009-12-28 14:07:23 -08:00
method_scoping_test.rb Make merging of order values consistent 2010-01-17 14:19:41 +05:30
migration_test_firebird.rb Merge branch 'ar-test-cleanup' of git://git.geeksomnia.com/rails 2008-01-21 17:20:51 +00:00
migration_test.rb Add support for Mysql column positioning via #add_column and #change_column 2009-12-03 23:09:57 -08:00
mixin_test.rb Force timestamp update 2008-03-31 03:57:25 +00:00
modules_test.rb Changed ActiveRecord::Base.store_full_sti_class to be true by default reflecting the previously announced Rails 3 default [DHH] 2010-01-03 19:30:28 -08:00
multiple_db_test.rb Rename active_relation_engine -> arel_engine and active_relation_table -> arel_table 2010-01-16 16:02:30 +05:30
named_scope_test.rb Inherit named scope class Scope from Relation 2010-01-18 04:24:24 +05:30
nested_attributes_test.rb Raise a RecordNotFound if an ID in nested attributes is given but doesn't return a record. [#2415 state:resolved] 2010-01-07 13:19:49 +01:00
pk_test.rb raises exception (ActiveRecord::ConfigurationError with message) on habtm association creation if join table contains a primary key 2009-08-09 22:17:39 -07:00
pooled_connections_test.rb Move AR logging responsibilities to ActiveRecord::Railties::Subscriber. 2010-01-13 01:19:23 +01:00
query_cache_test.rb Oracle adapter recourns count() as numeric (not string) 2009-08-06 23:40:59 +03:00
readonly_test.rb Don't publicize with_scope for tests since it may shadow public misuse 2009-12-28 14:07:23 -08:00
reflection_test.rb Renamed AssociationReflection #collection_association? to #collection?. 2010-01-08 21:47:17 +01:00
relations_test.rb Dont check for class equaity when merging relations 2010-01-18 04:28:21 +05:30
reload_models_test.rb Add missing fixture to allow reload models test to run isolated [#1609 state:resolved] 2008-12-20 20:39:25 +00:00
reserved_word_test_mysql.rb Merge branch 'ar-test-cleanup' of git://git.geeksomnia.com/rails 2008-01-21 17:20:51 +00:00
sanitize_test.rb Change all calls to String#chars to String#mb_chars. 2008-09-21 18:01:15 +02:00
schema_authorization_test_postgresql.rb Rescue spurious failures in case dummy postgresql user or schema already exists 2008-09-04 17:20:07 +02:00
schema_dumper_test.rb PostgreSQL: XML datatype support 2009-08-09 22:24:54 -07:00
schema_test_postgresql.rb Quote table names when casting to regclass so that capitalized tables are supported. [#2418 state:resolved] 2009-04-21 11:43:38 +01:00
serialization_test.rb Merge branch 'ar-test-cleanup' of git://git.geeksomnia.com/rails 2008-01-21 17:20:51 +00:00
state_machine_test.rb Add simple support for ActiveModel's StateMachine for ActiveRecord 2009-08-04 11:03:57 -05:00
subscriber_test.rb Fix the query matching in SubscriberTest 2010-01-16 00:02:46 +05:30
synonym_test_oracle.rb Merge branch 'ar-test-cleanup' of git://git.geeksomnia.com/rails 2008-01-21 17:20:51 +00:00
timestamp_test.rb Added :touch option to belongs_to associations that will touch the parent record when the current record is saved or destroyed [DHH] 2009-04-16 17:25:55 -05:00
transactions_test.rb Refactor new callbacks and AR implementation. 2009-09-08 10:26:39 -05:00
types_test.rb Refactoring attributes/types [#3348 state:resolved] 2009-10-17 12:37:15 -05:00
unconnected_test.rb Fix file permissions 2008-07-31 16:36:23 -05: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 save(false) is gone, use save(:validate => false) instead. 2010-01-17 14:22:34 +01:00
xml_serialization_test.rb Patch to ActiveModel's (and ActiveRecord, by association) XML serialization: If two parameters are present in Procs supplied to to_xml's :procs option, the model being serialized will be passed as the second argument [#2373 state:resolved] 2009-07-22 20:47:15 -05:00
yaml_serialization_test.rb Added #to_i to DateTime in ActiveSupport so #to_yaml works correctly on ActiveRecord models with DateTime attributes. 2009-12-15 08:15:21 -06:00