aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext/load_error_test.rb
diff options
context:
space:
mode:
authorAndrew White <andrew.white@unboxed.co>2016-11-14 11:25:52 +0000
committerAndrew White <andrew.white@unboxed.co>2016-11-14 11:25:52 +0000
commit8e43fc5ace8039370f233570863b34821a3be46f (patch)
treedc2340763cf1ec84eecfd1e7cebbaa680477c1bd /activesupport/test/core_ext/load_error_test.rb
parentb93a2571864eb858abc8b2f02f393f6751affc27 (diff)
downloadrails-8e43fc5ace8039370f233570863b34821a3be46f.tar.gz
rails-8e43fc5ace8039370f233570863b34821a3be46f.tar.bz2
rails-8e43fc5ace8039370f233570863b34821a3be46f.zip
Remove deprecated constant MissingSourceFIle
Diffstat (limited to 'activesupport/test/core_ext/load_error_test.rb')
-rw-r--r--activesupport/test/core_ext/load_error_test.rb8
1 files changed, 0 insertions, 8 deletions
diff --git a/activesupport/test/core_ext/load_error_test.rb b/activesupport/test/core_ext/load_error_test.rb
index b50a35b2cb..44ff6bb051 100644
--- a/activesupport/test/core_ext/load_error_test.rb
+++ b/activesupport/test/core_ext/load_error_test.rb
@@ -1,14 +1,6 @@
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' }