aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext/load_error_tests.rb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-03-23 11:53:40 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-03-23 11:53:40 +0000
commit373adc7f86f68f7b16d136835bb9254aaffd797f (patch)
treeead12d0a30ca9343ee8610bd6611b111c663ebcc /activesupport/test/core_ext/load_error_tests.rb
parent3697df1dd2be6e51867bea4d6089f01f8f204f3c (diff)
downloadrails-373adc7f86f68f7b16d136835bb9254aaffd797f.tar.gz
rails-373adc7f86f68f7b16d136835bb9254aaffd797f.tar.bz2
rails-373adc7f86f68f7b16d136835bb9254aaffd797f.zip
Improved error reporting especially around never shallowing exceptions. Debugging helpers should be much easier now #980 [Nicholas Seckar]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@985 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/test/core_ext/load_error_tests.rb')
-rw-r--r--activesupport/test/core_ext/load_error_tests.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/activesupport/test/core_ext/load_error_tests.rb b/activesupport/test/core_ext/load_error_tests.rb
new file mode 100644
index 0000000000..0b24c47112
--- /dev/null
+++ b/activesupport/test/core_ext/load_error_tests.rb
@@ -0,0 +1,17 @@
+require 'test/unit'
+require File.dirname(__FILE__) + '/../../lib/active_support/core_ext/load_error'
+
+class TestMissingSourceFile < Test::Unit::TestCase
+ def test_with_require
+ assert_raises(MissingSourceFile) { require 'no_this_file_don\'t_exist' }
+ end
+ def test_with_load
+ assert_raises(MissingSourceFile) { load 'nor_does_this_one' }
+ end
+ def test_path
+ begin load 'nor/this/one.rb'
+ rescue MissingSourceFile => e
+ assert_equal 'nor/this/one.rb', e.path
+ end
+ end
+end \ No newline at end of file