File: minitest.rb

package info (click to toggle)
ruby-knapsack 4.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,092 kB
  • sloc: ruby: 2,883; makefile: 4
file content (12 lines) | stat: -rw-r--r-- 287 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
# https://github.com/seattlerb/minitest/blob/master/lib/minitest/test.rb
module Minitest
  class Test
    def before_setup; end
    def after_teardown; end
  end

  # https://github.com/seattlerb/minitest/blob/master/lib/minitest.rb
  def self.after_run(&block)
    block.call
  end
end