From 373adc7f86f68f7b16d136835bb9254aaffd797f Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Wed, 23 Mar 2005 11:53:40 +0000 Subject: 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 --- activesupport/test/core_ext/load_error_tests.rb | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 activesupport/test/core_ext/load_error_tests.rb (limited to 'activesupport/test/core_ext/load_error_tests.rb') 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 -- cgit v1.2.3