Sha256: 013e337425169752e9236101262807842ebb5597a16f41c0d9585170e77a5e33

Contents?: true

Size: 1.49 KB

Versions: 44

Compression:

Stored size: 1.49 KB

Contents

require File.expand_path('../../test_helper', __FILE__)

require 'mocha/exception_raiser'
require 'timeout'

class ExceptionRaiserTest < Test::Unit::TestCase

  include Mocha

  def test_should_raise_exception_with_specified_class_and_default_message
    exception_class = Class.new(StandardError)
    raiser = ExceptionRaiser.new(exception_class, nil)
    exception = assert_raises(exception_class) { raiser.evaluate }
    assert_equal exception_class.to_s, exception.message
  end

  def test_should_raise_exception_with_specified_class_and_message
    exception_class = Class.new(StandardError)
    raiser = ExceptionRaiser.new(exception_class, 'message')
    exception = assert_raises(exception_class) { raiser.evaluate }
    assert_equal 'message', exception.message
  end

  def test_should_raise_exception_instance
    exception_class = Class.new(StandardError)
    raiser = ExceptionRaiser.new(exception_class.new('message'), nil)
    exception = assert_raises(exception_class) { raiser.evaluate }
    assert_equal 'message', exception.message
  end

  def test_should_raise_interrupt_exception_with_default_message_so_it_works_in_ruby_1_8_6
    raiser = ExceptionRaiser.new(Interrupt, nil)
    assert_raises(Interrupt) { raiser.evaluate }
  end

  def test_should_raise_subclass_of_interrupt_exception_with_default_message_so_it_works_in_ruby_1_8_6
    exception_class = Class.new(Interrupt)
    raiser = ExceptionRaiser.new(exception_class, nil)
    assert_raises(exception_class) { raiser.evaluate }
  end

end

Version data entries

44 entries across 36 versions & 3 rubygems

Version Path
challah-1.0.0.beta3 vendor/bundle/gems/mocha-0.13.3/test/unit/exception_raiser_test.rb
mocha-0.14.0.alpha test/unit/exception_raiser_test.rb
challah-1.0.0.beta2 vendor/bundle/gems/mocha-0.13.3/test/unit/exception_raiser_test.rb
challah-1.0.0.beta vendor/bundle/gems/mocha-0.13.3/test/unit/exception_raiser_test.rb
mocha-0.13.3 test/unit/exception_raiser_test.rb
mocha-0.12.10 test/unit/exception_raiser_test.rb
mocha-0.12.9 test/unit/exception_raiser_test.rb
mocha-0.13.2 test/unit/exception_raiser_test.rb
mocha-0.12.8 test/unit/exception_raiser_test.rb
mocha-0.13.1 test/unit/exception_raiser_test.rb
challah-rolls-0.2.0 vendor/bundle/gems/mocha-0.13.0/test/unit/exception_raiser_test.rb
challah-rolls-0.2.0 vendor/bundle/gems/challah-0.8.0.pre/vendor/bundle/gems/mocha-0.12.2/test/unit/exception_raiser_test.rb
challah-rolls-0.2.0 vendor/bundle/gems/mocha-0.12.3/test/unit/exception_raiser_test.rb
challah-rolls-0.2.0 vendor/bundle/gems/mocha-0.12.2/test/unit/exception_raiser_test.rb
challah-rolls-0.2.0 vendor/bundle/gems/challah-0.8.3/vendor/bundle/gems/mocha-0.12.3/test/unit/exception_raiser_test.rb
challah-rolls-0.2.0 vendor/bundle/gems/challah-0.8.3/vendor/bundle/gems/mocha-0.13.0/test/unit/exception_raiser_test.rb
challah-0.8.3 vendor/bundle/gems/mocha-0.12.3/test/unit/exception_raiser_test.rb
challah-0.8.3 vendor/bundle/gems/mocha-0.13.0/test/unit/exception_raiser_test.rb
mocha-0.13.0 test/unit/exception_raiser_test.rb
mocha-0.12.7 test/unit/exception_raiser_test.rb