Sha256: 89aaed6043fb20484a70485aa6e1457a201900bf2c01b11f626f7c53eab656d8

Contents?: true

Size: 1.85 KB

Versions: 5

Compression:

Stored size: 1.85 KB

Contents

#!/usr/bin/env ruby

#---
# Copyright 2003-2012 by Jim Weirich (jim.weirich@gmail.com).
# All rights reserved.

# Permission is granted for use, copying, modification, distribution,
# and distribution of modified versions of this work as long as the
# above copyright notice is included.
#+++

require 'test/unit'
require 'flexmock/base'
require 'flexmock/test_unit_assert_spy_called'

class FlexMock

  ####################################################################
  # Test::Unit::TestCase Integration.
  #
  # Include this module in any TestCase class in a Test::Unit test
  # suite to get integration with FlexMock.  When this module is
  # included, the mock container methods (e.g. flexmock(), flexstub())
  # will be available.
  #
  # <b>Note:</b> If you define a +teardown+ method in the test case,
  # <em>dont' forget to invoke the +super+ method!</em> Failure to
  # invoke super will cause all mocks to not be verified.
  #
  module TestCase
    include ArgumentTypes
    include MockContainer
    include TestUnitAssertions

    # Teardown the test case, verifying any mocks that might have been
    # defined in this test case.
    def teardown
      super
      flexmock_teardown
    end

  end

  ####################################################################
  # Adapter for adapting FlexMock to the Test::Unit framework.
  #
  class TestUnitFrameworkAdapter
    include Test::Unit::Assertions

    def assert_block(msg, &block)
      unless yield
        msg = msg.call if msg.is_a?(Proc)
        super(msg) { false }
      end
    rescue assertion_failed_error => ex
      ex.message.sub!(/Expected block to return true value./,'')
      raise ex
    end

    def assertion_failed_error
      defined?(Test::Unit::AssertionFailedError) ? Test::Unit::AssertionFailedError : MiniTest::Assertion
    end
  end

  @framework_adapter = TestUnitFrameworkAdapter.new
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
flexmock-1.3.0 lib/flexmock/test_unit_integration.rb
flexmock-1.2.0 lib/flexmock/test_unit_integration.rb
flexmock-1.1.0 lib/flexmock/test_unit_integration.rb
flexmock-1.0.4 lib/flexmock/test_unit_integration.rb
flexmock-1.0.3 lib/flexmock/test_unit_integration.rb