Sha256: 4918cdaa5585214c74b3b435fb99a1d2d7651a33ac1d7d943a28d7a35ecb69a2
Contents?: true
Size: 420 Bytes
Versions: 5
Compression:
Stored size: 420 Bytes
Contents
require 'abstract_unit' class TestMissingSourceFile < Test::Unit::TestCase def test_with_require assert_raise(MissingSourceFile) { require 'no_this_file_don\'t_exist' } end def test_with_load assert_raise(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
Version data entries
5 entries across 5 versions & 3 rubygems