Sha256: ef852ad570a627f02ec3c45946bea810a61d5414a4c5c1fd111bedadef409640

Contents?: true

Size: 1.06 KB

Versions: 2

Compression:

Stored size: 1.06 KB

Contents

require 'abstract_unit'
require 'active_support/core_ext/load_error'

class TestMissingSourceFile < ActiveSupport::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

  def test_is_missing
    begin load 'nor_does_this_one'
    rescue MissingSourceFile => e
      assert e.is_missing?('nor_does_this_one')
      assert e.is_missing?('nor_does_this_one.rb')
      assert_not e.is_missing?('some_other_file')
    end
  end
end

class TestLoadError < ActiveSupport::TestCase
  def test_with_require
    assert_raise(LoadError) { require 'no_this_file_don\'t_exist' }
  end
  def test_with_load
    assert_raise(LoadError) { load 'nor_does_this_one' }
  end
  def test_path
    begin load 'nor/this/one.rb'
    rescue LoadError => e
      assert_equal 'nor/this/one.rb', e.path
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
activejob-lock-0.0.2 rails/activesupport/test/core_ext/load_error_test.rb
activejob-lock-0.0.1 rails/activesupport/test/core_ext/load_error_test.rb