Sha256: 0b5625c4ba7fafdcf50f91aebddb1f5baa9516928ac44852696ba912ee677c50
Contents?: true
Size: 451 Bytes
Versions: 69
Compression:
Stored size: 451 Bytes
Contents
require File.dirname(__FILE__) + '/../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
69 entries across 69 versions & 3 rubygems