diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2015-01-02 19:44:39 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2015-01-02 19:44:39 -0300 |
commit | 734d97d292b4f04c13f03625e07f2888e88b0649 (patch) | |
tree | 941f9ab3764da181497c36264fb74a7a598fb844 /activesupport/test/core_ext | |
parent | 48deeab90acd9f8f609fa461205a793c52f11ed2 (diff) | |
download | rails-734d97d292b4f04c13f03625e07f2888e88b0649.tar.gz rails-734d97d292b4f04c13f03625e07f2888e88b0649.tar.bz2 rails-734d97d292b4f04c13f03625e07f2888e88b0649.zip |
Deprecate `MissingSourceFile` in favor of `LoadError`.
`MissingSourceFile` was just an alias to `LoadError` and was not
being raised inside the framework.
Diffstat (limited to 'activesupport/test/core_ext')
-rw-r--r-- | activesupport/test/core_ext/load_error_test.rb | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/activesupport/test/core_ext/load_error_test.rb b/activesupport/test/core_ext/load_error_test.rb index 66c39b143c..b2a75a2bcc 100644 --- a/activesupport/test/core_ext/load_error_test.rb +++ b/activesupport/test/core_ext/load_error_test.rb @@ -1,6 +1,15 @@ require 'abstract_unit' require 'active_support/core_ext/load_error' + +class TestMissingSourceFile < ActiveSupport::TestCase + def test_it_is_deprecated + assert_deprecated do + MissingSourceFile.new + end + end +end + class TestLoadError < ActiveSupport::TestCase def test_with_require assert_raise(LoadError) { require 'no_this_file_don\'t_exist' } |