instiki/vendor/rails/activesupport/test/core_ext/load_error_tests.rb
2007-01-22 07:43:50 -06:00

17 lines
498 B
Ruby

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