Sha256: 1a43ce01705523e04a676379452ed8c7a7b41e595396a62e1ab969f70a9c87b0
Contents?: true
Size: 422 Bytes
Versions: 3
Compression:
Stored size: 422 Bytes
Contents
require 'abstract_unit' 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
Version data entries
3 entries across 3 versions & 2 rubygems