Sha256: 2fb779fb01f84c45914039c237cea906da050590279fdebf04c8820570a4138c
Contents?: true
Size: 1.95 KB
Versions: 13
Compression:
Stored size: 1.95 KB
Contents
#!/usr/bin/env ruby #--- # Copyright 2003-2013 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/assertions' 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 attr_accessor :assertions def initialize @assertions = 0 end def make_assertion(msg, &block) unless yield msg = msg.call if msg.is_a?(Proc) assert(false, msg) end rescue assertion_failed_error => ex ex.message.sub!(/Expected block to return true value./,'') raise ex end def check(msg, &block) make_assertion(msg, &block) end def assertion_failed_error defined?(Test::Unit::AssertionFailedError) ? Test::Unit::AssertionFailedError : MiniTest::Assertion end def check_failed_error assertion_failed_error end end @framework_adapter = TestUnitFrameworkAdapter.new end
Version data entries
13 entries across 13 versions & 1 rubygems