1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

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
This commit is contained in:
Nicholas Seckar 2005-11-07 01:48:33 +00:00
parent 8210f70c7c
commit 24064910d0
3 changed files with 4 additions and 1 deletions

View file

@ -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]

View file

@ -1,4 +1,5 @@
require File.dirname(__FILE__) + '/module_attribute_accessors'
require File.dirname(__FILE__) + '/core_ext/load_error'
module Dependencies #:nodoc:
extend self

View file

@ -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