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
Raimonds Simanovskis 58af0d46cf Fixed test_disable_referential_integrity on Oracle
On Oracle disable_referential_integrity before execution of block will disable foreign key constraints and after block will enable them but when constraints are enabled then they are validated. Therefore created record with invalid foreign key should be deleted before enabling foreign key constraints.
2011-08-08 22:32:26 +03:00
..
adapters forgot to add this test case 2011-07-22 09:12:32 -07:00
associations Fix test for Rubinius 2011-08-05 16:48:46 -03:00
attribute_methods please use ruby -I lib:test path/to/test.rb, or export RUBY_OPT 2011-06-06 15:47:13 -07:00
coders please use ruby -I lib:test path/to/test.rb, or export RUBY_OPT 2011-06-06 15:47:13 -07:00
connection_adapters please use ruby -I lib:test path/to/test.rb, or export RUBY_OPT 2011-06-06 15:47:13 -07:00
fixtures Fix a couple of helper requires that were missed. This was causing the tests to fail to run on 1.8.7. 2011-06-07 08:35:55 +01:00
identity_map please use ruby -I lib:test path/to/test.rb, or export RUBY_OPT 2011-06-06 15:47:13 -07:00
migration Reversing the changes done in c278a2c while still resolving #1857. 2011-07-02 23:43:13 +05:30
session_store please use ruby -I lib:test path/to/test.rb, or export RUBY_OPT 2011-06-06 15:47:13 -07:00
validations please use ruby -I lib:test path/to/test.rb, or export RUBY_OPT 2011-06-06 15:47:13 -07:00
adapter_test.rb Fixed test_disable_referential_integrity on Oracle 2011-08-08 22:32:26 +03:00
aggregations_test.rb please use ruby -I lib:test path/to/test.rb, or export RUBY_OPT 2011-06-06 15:47:13 -07:00
ar_schema_test.rb please use ruby -I lib:test path/to/test.rb, or export RUBY_OPT 2011-06-06 15:47:13 -07:00
associations_test.rb Add a proxy_association method to association proxies, which can be called by association extensions to access information about the association. This replaces proxy_owner etc with proxy_association.owner. 2011-07-27 12:36:00 +01:00
attribute_methods_test.rb Resolve warnings by instantizing @attrubtes as nil 2011-07-30 12:08:26 -04:00
autosave_association_test.rb Oops, this should have been in the last commit 2011-06-12 19:05:29 +01:00
base_test.rb remove deprication warning: ambiguous first argument; put parentheses or even spaces 2011-07-26 23:39:17 +05:30
batches_test.rb Merge pull request #1807 from caius/find_in_batches_id_bug 2011-07-14 07:57:04 -07:00
binary_test.rb please use ruby -I lib:test path/to/test.rb, or export RUBY_OPT 2011-06-06 15:47:13 -07:00
bind_parameter_test.rb please use ruby -I lib:test path/to/test.rb, or export RUBY_OPT 2011-06-06 15:47:13 -07:00
calculations_test.rb pg does not allow aliases in the having clause, but functions are fine 2011-08-05 11:20:15 -07:00
callbacks_test.rb please use ruby -I lib:test path/to/test.rb, or export RUBY_OPT 2011-06-06 15:47:13 -07: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 please use ruby -I lib:test path/to/test.rb, or export RUBY_OPT 2011-06-06 15:47:13 -07:00
connection_management_test.rb adding more tests around database uri parsing 2011-07-21 12:57:05 -07:00
connection_pool_test.rb please use ruby -I lib:test path/to/test.rb, or export RUBY_OPT 2011-06-06 15:47:13 -07:00
counter_cache_test.rb please use ruby -I lib:test path/to/test.rb, or export RUBY_OPT 2011-06-06 15:47:13 -07:00
custom_locking_test.rb please use ruby -I lib:test path/to/test.rb, or export RUBY_OPT 2011-06-06 15:47:13 -07: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 please use ruby -I lib:test path/to/test.rb, or export RUBY_OPT 2011-06-06 15:47:13 -07:00
defaults_test.rb please use ruby -I lib:test path/to/test.rb, or export RUBY_OPT 2011-06-06 15:47:13 -07:00
deprecated_finder_test.rb please use ruby -I lib:test path/to/test.rb, or export RUBY_OPT 2011-06-06 15:47:13 -07:00
dirty_test.rb please use ruby -I lib:test path/to/test.rb, or export RUBY_OPT 2011-06-06 15:47:13 -07:00
dup_test.rb please use ruby -I lib:test path/to/test.rb, or export RUBY_OPT 2011-06-06 15:47:13 -07:00
dynamic_finder_match_test.rb please use ruby -I lib:test path/to/test.rb, or export RUBY_OPT 2011-06-06 15:47:13 -07:00
finder_respond_to_test.rb please use ruby -I lib:test path/to/test.rb, or export RUBY_OPT 2011-06-06 15:47:13 -07:00
finder_test.rb Raise an ArgumentError if user passing less number of argument in the dynamic finder 2011-07-17 18:44:03 -04:00
fixtures_test.rb Quote these dates to prevent intermittent test failure. Suppose local time is 00:50 GMT+1. Without the quoting, the YAML parser would parse this as 00:50 UTC, into the local time of 01:50 GMT+1. Then, it would get written into the database in local time as 01:50. When it came back out the UTC date from the database and the UTC date of two weeks ago would be compared. The former would be 23:50, and the latter would be 00:50, so the two dates would differ, causing the assertion to fail. Quoting it prevents the YAML parser from getting involved. 2011-08-04 00:38:27 +01: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 If we're going to use a global variable, let's at least namespace it 2011-06-12 18:38:39 +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
identity_map_test.rb Changed a few instances of of words in the API docs written in British English to 2011-07-24 10:21:42 +00:00
inheritance_test.rb please use ruby -I lib:test path/to/test.rb, or export RUBY_OPT 2011-06-06 15:47:13 -07:00
invalid_date_test.rb Changed a few instances of of words in the API docs written in British English to 2011-07-24 10:21:42 +00:00
invertible_migration_test.rb Ensure that .up and .down work as well. 2011-08-02 18:57:34 -07:00
json_serialization_test.rb please use ruby -I lib:test path/to/test.rb, or export RUBY_OPT 2011-06-06 15:47:13 -07:00
lifecycle_test.rb please use ruby -I lib:test path/to/test.rb, or export RUBY_OPT 2011-06-06 15:47:13 -07:00
locking_test.rb please use ruby -I lib:test path/to/test.rb, or export RUBY_OPT 2011-06-06 15:47:13 -07:00
log_subscriber_test.rb Log instrumentation name for exists? queries 2011-06-22 13:41:34 -07:00
mass_assignment_security_test.rb Pass mass-assignment options to nested models - closes #1673. 2011-06-13 13:02:51 +01:00
method_scoping_test.rb please use ruby -I lib:test path/to/test.rb, or export RUBY_OPT 2011-06-06 15:47:13 -07:00
migration_test.rb Changed the default value for the options argument on ActiveRecord::ConnectionAdapters::Table#column_exists? from nil to an empty Hash {}. 2011-06-18 14:38:38 -06: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 please use ruby -I lib:test path/to/test.rb, or export RUBY_OPT 2011-06-06 15:47:13 -07:00
multiple_db_test.rb please use ruby -I lib:test path/to/test.rb, or export RUBY_OPT 2011-06-06 15:47:13 -07:00
named_scope_test.rb Refactor test case to use anonymous class - Thank you @tenderlove 2011-07-18 00:37:06 -04:00
nested_attributes_test.rb assign_nested_attributes_for_collection_association should work with Ruby 1.9 [Closes #2106] 2011-07-20 15:40:01 -07:00
persistence_test.rb Bring back the ability to provide :order for update_all. 2011-07-25 13:33:44 +02:00
pooled_connections_test.rb please use ruby -I lib:test path/to/test.rb, or export RUBY_OPT 2011-06-06 15:47:13 -07:00
primary_keys_test.rb Revert "to_key on a destroyed model should return nil". Closes #2440 2011-08-05 19:39:19 -03:00
query_cache_test.rb Fix inconsistencies by being polite to the wrapped body. Needed for Rack::Sendfile to function properly. See issue #1761. 2011-06-18 22:30:01 +01:00
quoting_test.rb please use ruby -I lib:test path/to/test.rb, or export RUBY_OPT 2011-06-06 15:47:13 -07:00
readonly_test.rb please use ruby -I lib:test path/to/test.rb, or export RUBY_OPT 2011-06-06 15:47:13 -07:00
reflection_test.rb cache the plural name on the reflection so we do not pay pluralize costs on joins 2011-06-30 15:31:22 -07:00
relation_scoping_test.rb Add more test cases 2011-06-28 22:10:51 +02:00
relation_test.rb oops! remove debugging codes 2011-06-27 14:46:56 -07:00
relations_test.rb Revert "Merge pull request #2309 from smasry/master" 2011-07-28 13:14:11 +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 remove extra require for 'stringio' as it is required in helper.rb 2011-07-31 18:05:05 +05:30
serialization_test.rb Move to_xml tests to xml_serialization_test.rb 2011-07-17 11:34:07 -07:00
timestamp_test.rb fix typo 2011-06-08 03:31:33 +06:00
transaction_callbacks_test.rb please use ruby -I lib:test path/to/test.rb, or export RUBY_OPT 2011-06-06 15:47:13 -07:00
transactions_test.rb please use ruby -I lib:test path/to/test.rb, or export RUBY_OPT 2011-06-06 15:47:13 -07:00
unconnected_test.rb please use ruby -I lib:test path/to/test.rb, or export RUBY_OPT 2011-06-06 15:47:13 -07:00
validations_repair_helper.rb
validations_test.rb please use ruby -I lib:test path/to/test.rb, or export RUBY_OPT 2011-06-06 15:47:13 -07:00
xml_serialization_test.rb Move to_xml tests to xml_serialization_test.rb 2011-07-17 11:34:07 -07:00
yaml_serialization_test.rb please use ruby -I lib:test path/to/test.rb, or export RUBY_OPT 2011-06-06 15:47:13 -07:00