Sha256: 74950dd5c5ca0b20450758b0d22f8429437dfa49cac5d6cd7cfebfd1a4f83575

Contents?: true

Size: 960 Bytes

Versions: 12

Compression:

Stored size: 960 Bytes

Contents

require "minitest/autorun"
require "minitest/pride"
require "mocha/setup"
require "ostruct"

def context(*args, &block)
  describe(*args, &block)
end

def capture_output_streams
  $stdout = StringIO.new
  $stderr = StringIO.new
  yield
ensure
  $stdout = STDOUT
  $stderr = STDERR
end

module MiniTest
  module Assertions
    ##
    # Fails unless <tt>exp</tt> and <tt>act</tt> are both arrays and
    # contain the same elements.
    #
    #     assert_matched_arrays [3,2,1], [1,2,3]

    def assert_matched_arrays(exp, act)
      exp_ary = exp.to_ary
      assert_kind_of Array, exp_ary
      act_ary = act.to_ary
      assert_kind_of Array, act_ary
      assert_equal exp_ary.sort, act_ary.sort
    end
  end

  module Expectations
    ##
    # See MiniTest::Assertions#assert_matched_arrays
    #
    #     [1,2,3].must_match_array [3,2,1]
    #
    # :method: must_match_array

    infect_an_assertion :assert_matched_arrays, :must_match_array
  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
rubycritic-2.6.0 test/test_helper.rb
rubycritic-2.5.0 test/test_helper.rb
rubycritic-2.4.1 test/test_helper.rb
rubycritic-2.4.0 test/test_helper.rb
rubycritic-2.3.0 test/test_helper.rb
rubycritic-2.2.0 test/test_helper.rb
rubycritic-2.1.0 test/test_helper.rb
rubycritic-2.0.0 test/test_helper.rb
rubycritic-1.4.0 test/test_helper.rb
rubycritic-1.3.0 test/test_helper.rb
rubycritic-1.2.1 test/test_helper.rb
rubycritic-1.2.0 test/test_helper.rb