Sha256: 8dca82ebc67b2659adff290dbe1bb9d90798f6ce03259f0a807a9f206df94ea4

Contents?: true

Size: 1.23 KB

Versions: 3

Compression:

Stored size: 1.23 KB

Contents

# Copyright (c) 2008,2011 Thomas Sawyer
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# AE namespace.
module AE

  # Set Assertion class. This is a convenience method
  # for framework adapters, used to set the exception class
  # that a framework uses to raise an assertion error.
  def self.assertion_error=(exception_class)
    verbose, $VERBOSE = $VERBOSE, nil
    Object.const_set(:Assertion, exception_class)
    $VERBOSE = verbose
  end

  @ansi = true

  #
  def self.ansi?
    @ansi
  end

  # To turn of ANSI colorized error messages off, set 
  # ansi to +false+ in your test helper.
  #
  # Example
  #
  #   AE.ansi = false
  #
  def self.ansi=(boolean)
    @ansi = boolean
  end

end

require 'ae/version'
require 'ae/assert'
require 'ae/expect'

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ae-1.7.4 lib/ae.rb
ae-1.7.3 lib/ae.rb
ae-1.7.2 lib/ae.rb