1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/activerecord/test/cases
Rafael Mendonça França 0168ce10a3 Merge pull request #19683 from tristang/require-option-for-counter-cache
Require explicit counter_cache option for has_many
2015-08-13 17:51:07 -03:00
..
adapters use assert_not instead of refute as mentioned in our guides. 2015-08-13 09:20:39 +02:00
associations Merge pull request #19683 from tristang/require-option-for-counter-cache 2015-08-13 17:51:07 -03:00
attribute_methods
coders
connection_adapters Map :bigint as NUMBER(19) sql_type by using :limit => 19 for Oracle 2015-06-01 12:23:20 +00:00
connection_specification
fixture_set
migration Merge pull request #20459 2015-08-06 16:24:09 -06:00
relation Add test to 57daaef 2015-05-28 00:37:21 -03:00
scoping Merge pull request #19770 from vngrs/prevent_duplicated_where_clauses 2015-08-13 17:31:19 -03:00
tasks Add run_cmd class method to ActiveRecord::Tasks::DatabaseTasks 2015-08-01 16:53:25 -05:00
type remove redundant parenthesis 2015-05-14 04:13:33 +05:30
validations Properly allow uniqueness validations on primary keys. 2015-07-25 13:05:53 -06:00
adapter_test.rb Closes rails/rails#18864: Renaming transactional fixtures to transactional tests 2015-03-16 11:35:44 -07:00
aggregations_test.rb
ar_schema_test.rb Closes rails/rails#18864: Renaming transactional fixtures to transactional tests 2015-03-16 11:35:44 -07:00
associations_test.rb Silence deprecation warning from force reload 2015-07-16 16:06:26 -04:00
attribute_decorators_test.rb
attribute_methods_test.rb
attribute_set_test.rb
attribute_test.rb
attributes_test.rb use assert_not instead of refute as mentioned in our guides. 2015-08-13 09:20:39 +02:00
autosave_association_test.rb Correctly ignore mark_for_destruction without autosave 2015-07-20 09:00:00 -06:00
base_test.rb Replaced ActiveSupport::Concurrency::Latch with concurrent-ruby. 2015-07-13 15:44:21 -04:00
batches_test.rb Add ActiveRecord::Relation#in_batches 2015-08-07 10:26:38 +04:30
binary_test.rb
bind_parameter_test.rb
calculations_test.rb Use Enumerable#sum on ActiveRecord::Relation when a block is given 2015-06-19 10:44:43 -06:00
callbacks_test.rb AR::RecordNotSaved & RecordNotDestroyed should include an error message 2015-05-01 19:01:41 -07:00
clone_test.rb
collection_cache_key_test.rb Fix ambiguous argument warning 2015-08-02 22:40:25 +03:00
column_alias_test.rb
column_definition_test.rb
connection_management_test.rb Add schema cache to new connection pool after fork 2015-05-17 00:57:52 +01:00
connection_pool_test.rb Replaced ActiveSupport::Concurrency::Latch with concurrent-ruby. 2015-07-13 15:44:21 -04:00
core_test.rb
counter_cache_test.rb Fix counter_cache for polymorphic associations 2015-07-19 15:52:29 -06:00
custom_locking_test.rb
database_statements_test.rb
date_time_precision_test.rb Closes rails/rails#18864: Renaming transactional fixtures to transactional tests 2015-03-16 11:35:44 -07:00
date_time_test.rb
defaults_test.rb Closes rails/rails#18864: Renaming transactional fixtures to transactional tests 2015-03-16 11:35:44 -07:00
dirty_test.rb Don't crash when mutating attributes in a getter 2015-06-12 11:03:12 -06:00
disconnected_test.rb Silence warning from MySQL::Error object in test 2015-04-23 17:05:03 -04:00
dup_test.rb
enum_test.rb use assert_not instead of refute as mentioned in our guides. 2015-08-13 09:20:39 +02:00
explain_subscriber_test.rb Let WITH (CTE) queries be explainable 2015-05-28 14:10:09 +03:00
explain_test.rb
finder_respond_to_test.rb
finder_test.rb remove old unavailable link with relevant fix 2015-03-23 11:18:14 +05:30
fixtures_test.rb descriptive error message when fixtures contian a missing column. 2015-08-13 17:13:32 +02:00
forbidden_attributes_protection_test.rb
habtm_destroy_order_test.rb
helper.rb Ensure that microsecond precision is only used for version of mysql that support it. Fixes #19711 2015-07-20 15:30:10 -05:00
hot_compatibility_test.rb Closes rails/rails#18864: Renaming transactional fixtures to transactional tests 2015-03-16 11:35:44 -07:00
i18n_test.rb
inheritance_test.rb invalid sti error message contains the full class name. 2015-05-13 11:35:34 +02:00
integration_test.rb
invalid_connection_test.rb Closes rails/rails#18864: Renaming transactional fixtures to transactional tests 2015-03-16 11:35:44 -07:00
invalid_date_test.rb
invertible_migration_test.rb make remove_index :table, :column reversible. 2015-06-15 09:42:26 +02:00
json_serialization_test.rb
locking_test.rb Fix the test that was broken by #16445 rather than deleting it 2015-07-19 15:52:31 -06:00
log_subscriber_test.rb
migration_test.rb Closes rails/rails#18864: Renaming transactional fixtures to transactional tests 2015-03-16 11:35:44 -07:00
migrator_test.rb Closes rails/rails#18864: Renaming transactional fixtures to transactional tests 2015-03-16 11:35:44 -07:00
mixin_test.rb remove unnecessary rescue 2015-03-05 15:05:47 -08:00
modules_test.rb remove old unavailable link with relevant fix 2015-03-23 11:18:14 +05:30
multiparameter_attributes_test.rb
multiple_db_test.rb Closes rails/rails#18864: Renaming transactional fixtures to transactional tests 2015-03-16 11:35:44 -07:00
nested_attributes_test.rb Ensure that 'ActionController::Parameters' can still be passed to AR for collection associations 2015-07-18 08:23:52 -07:00
nested_attributes_with_callbacks_test.rb
persistence_test.rb Cause ActiveRecord::Base::reload to also ignore the QueryCache. 2015-04-28 18:00:09 +01:00
pooled_connections_test.rb Closes rails/rails#18864: Renaming transactional fixtures to transactional tests 2015-03-16 11:35:44 -07:00
primary_keys_test.rb Added test case for serial? method when sequence name is not quoted 2015-05-22 14:55:23 +05:30
query_cache_test.rb PostgreSQL, Fix OID based type casts in C for primitive types. 2015-03-25 15:05:23 +01:00
quoting_test.rb
readonly_test.rb
reaper_test.rb
reflection_test.rb Improve test for leaky scope chain 2015-03-18 08:13:54 -04:00
relation_test.rb Skip test that fails from outdated sqlite3 on travis 2015-06-02 07:29:44 -06:00
relations_test.rb Fix regression caused by a01d164b 2015-07-07 13:40:50 -03:00
reload_models_test.rb fix test not failing when executed isolated 2015-06-19 16:02:12 -03:00
result_test.rb
sanitize_test.rb
schema_dumper_test.rb Display decimal defaults as strings to keep precision 2015-06-23 14:38:00 -07:00
secure_token_test.rb
serialization_test.rb Remove XML Serialization from core. 2015-08-07 11:01:48 -04:00
serialized_attribute_test.rb Add a test to ensure serialize persists nil as NULL 2015-06-12 13:50:51 -06:00
statement_cache_test.rb
store_test.rb
suppressor_test.rb Apply Active Record suppression to all saves 2015-06-04 00:11:38 -04:00
test_case.rb make it possible to run AR tests with bin/test 2015-06-11 14:12:16 +02:00
test_fixtures_test.rb Closes rails/rails#18864: Renaming transactional fixtures to transactional tests 2015-03-16 11:35:44 -07:00
time_precision_test.rb Closes rails/rails#18864: Renaming transactional fixtures to transactional tests 2015-03-16 11:35:44 -07:00
timestamp_test.rb Fix missing index when using timestamps with index 2015-04-15 09:53:55 +01:00
touch_later_test.rb use assert_not instead of refute as mentioned in our guides. 2015-08-13 09:20:39 +02:00
transaction_callbacks_test.rb Closes rails/rails#18864: Renaming transactional fixtures to transactional tests 2015-03-16 11:35:44 -07:00
transaction_isolation_test.rb Closes rails/rails#18864: Renaming transactional fixtures to transactional tests 2015-03-16 11:35:44 -07:00
transactions_test.rb Fix state being carried over from previous transaction 2015-07-20 09:12:01 -06:00
type_test.rb
types_test.rb
unconnected_test.rb Closes rails/rails#18864: Renaming transactional fixtures to transactional tests 2015-03-16 11:35:44 -07:00
validations_repair_helper.rb
validations_test.rb
view_test.rb Resolve enums in test fixtures 2015-05-27 21:48:58 -04:00
yaml_serialization_test.rb Add YAML compatibility for objects from Rails 4.2 2015-03-10 11:56:45 -06:00