diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2004-12-23 19:12:07 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2004-12-23 19:12:07 +0000 |
commit | f6d2bc30fe807ba4cee850dc8a04244a4e65d7b2 (patch) | |
tree | e1edb148a345a69d7932e91d329a4228b7c38682 /railties | |
parent | 00deaf6d56085d4961eff8e8e0948a9241dfd5ea (diff) | |
download | rails-f6d2bc30fe807ba4cee850dc8a04244a4e65d7b2.tar.gz rails-f6d2bc30fe807ba4cee850dc8a04244a4e65d7b2.tar.bz2 rails-f6d2bc30fe807ba4cee850dc8a04244a4e65d7b2.zip |
Added ActionMailer::Base.raise_delivery_errors = false to the test environment as we checks will be performed against deliveries array instead.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@267 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties')
-rw-r--r-- | railties/CHANGELOG | 2 | ||||
-rw-r--r-- | railties/environments/test.rb | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/railties/CHANGELOG b/railties/CHANGELOG index f2fc996990..a7bc95386f 100644 --- a/railties/CHANGELOG +++ b/railties/CHANGELOG @@ -1,5 +1,7 @@ *SVN* +* Added ActionMailer::Base.raise_delivery_errors = false to the test environment as we checks will be performed against deliveries array instead. + * Added protection for creating a model through the generators with a name of an existing class, like Thread or Date. It'll even offer you a synonym using wordnet.princeton.edu as a look-up. No, I'm not kidding :) [Florian Gross] diff --git a/railties/environments/test.rb b/railties/environments/test.rb index 1cfa614de3..11ce5066de 100644 --- a/railties/environments/test.rb +++ b/railties/environments/test.rb @@ -1,3 +1,4 @@ ActionController::Base.consider_all_requests_local = true ActionController::Base.reload_dependencies = false ActiveRecord::Base.reload_associations = false +ActionMailer::Base.raise_delivery_errors = false
\ No newline at end of file |