summaryrefslogtreecommitdiff
path: root/ruby_1_8_6/lib/test/unit/assertionfailederror.rb
blob: a21e4b5870ea0da2977bc22fef85427a67b4675d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#--
#
# Author:: Nathaniel Talbott.
# Copyright:: Copyright (c) 2000-2002 Nathaniel Talbott. All rights reserved.
# License:: Ruby license.

module Test
  module Unit

    # Thrown by Test::Unit::Assertions when an assertion fails.
    class AssertionFailedError < StandardError
    end
  end
end