summaryrefslogtreecommitdiff
path: root/lib/test/unit/assertionfailederror.rb
blob: 085420367512ffdd0782b051a80d910144d7ea28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# :nodoc:
#
# 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