File: minitest_teardown_test.rb

package info (click to toggle)
ruby-flexmock 3.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 836 kB
  • sloc: ruby: 7,572; makefile: 6
file content (14 lines) | stat: -rw-r--r-- 313 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require "minitest/autorun"
require 'flexmock/test_unit'

class SimpleTest < MiniTest::Unit::TestCase

  # This validates that the minitest teardown method is properly
  # aliased when using MiniTest.
  #
  # (see https://github.com/jimweirich/flexmock/issues/14).
  #
  def test_flexmock
    flexmock()
  end
end