summaryrefslogtreecommitdiff
path: root/test/rake/rake_test_setup.rb
blob: de94d56b4042838b87a60cd909ae336ddd03d219 (plain)
1
2
3
4
5
6
7
8
9
# Common setup for all test files.

# require 'flexmock/test_unit'

module TestMethods
  def assert_exception(ex, msg=nil, &block)
    assert_raise(ex, msg, &block)
  end
end