aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicholas Seckar <nseckar@gmail.com>2005-11-07 01:48:33 +0000
committerNicholas Seckar <nseckar@gmail.com>2005-11-07 01:48:33 +0000
commit24064910d05d801eb77c5170aca2bbc2b3d11ccf (patch)
tree23dd4ddcb994ad920a9b5af03d4411cfc7107236
parent8210f70c7cbc14a762b198f21814b96664b2c867 (diff)
downloadrails-24064910d05d801eb77c5170aca2bbc2b3d11ccf.tar.gz
rails-24064910d05d801eb77c5170aca2bbc2b3d11ccf.tar.bz2
rails-24064910d05d801eb77c5170aca2bbc2b3d11ccf.zip
Fix broken tests caused by incomplete loading of active support.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2901 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
-rw-r--r--activesupport/CHANGELOG2
-rw-r--r--activesupport/lib/active_support/dependencies.rb1
-rw-r--r--activesupport/test/dependencies_test.rb2
3 files changed, 4 insertions, 1 deletions
diff --git a/activesupport/CHANGELOG b/activesupport/CHANGELOG
index 8b77ede4e2..2fc164b65e 100644
--- a/activesupport/CHANGELOG
+++ b/activesupport/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Fix broken tests caused by incomplete loading of active support. [Nicholas Seckar]
+
* Fix status pluralization bug so status_codes doesn't get pluralized as statuses_code. #2758 [keithm@infused.org]
* Added Kernel#silence_stderr to silence stderr for the duration of the given block [Sam Stephenson]
diff --git a/activesupport/lib/active_support/dependencies.rb b/activesupport/lib/active_support/dependencies.rb
index 152db5b189..26466097e8 100644
--- a/activesupport/lib/active_support/dependencies.rb
+++ b/activesupport/lib/active_support/dependencies.rb
@@ -1,4 +1,5 @@
require File.dirname(__FILE__) + '/module_attribute_accessors'
+require File.dirname(__FILE__) + '/core_ext/load_error'
module Dependencies #:nodoc:
extend self
diff --git a/activesupport/test/dependencies_test.rb b/activesupport/test/dependencies_test.rb
index a34fc0d323..767795f6ac 100644
--- a/activesupport/test/dependencies_test.rb
+++ b/activesupport/test/dependencies_test.rb
@@ -20,7 +20,7 @@ class DependenciesTest < Test::Unit::TestCase
end
def test_require_missing_dependency
- assert_raises(LoadError) { require_dependency("missing_service") }
+ assert_raises(MissingSourceFile) { require_dependency("missing_service") }
end
def test_require_missing_association