instiki/vendor/rails/activesupport/test/core_ext/load_error_test.rb

17 lines
420 B
Ruby
Raw Normal View History

require 'abstract_unit'
2007-01-22 14:43:50 +01:00
class TestMissingSourceFile < Test::Unit::TestCase
def test_with_require
assert_raise(MissingSourceFile) { require 'no_this_file_don\'t_exist' }
2007-01-22 14:43:50 +01:00
end
def test_with_load
assert_raise(MissingSourceFile) { load 'nor_does_this_one' }
2007-01-22 14:43:50 +01:00
end
def test_path
begin load 'nor/this/one.rb'
rescue MissingSourceFile => e
assert_equal 'nor/this/one.rb', e.path
end
end
end