2011-02-03 01:48:27 -05:00
|
|
|
# Copyright (c) 2010-2011 Michael Dvorkin
|
2010-10-31 22:21:26 -04:00
|
|
|
#
|
|
|
|
# Awesome Print is freely distributable under the terms of MIT license.
|
|
|
|
# See LICENSE file or http://www.opensource.org/licenses/mit-license.php
|
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
#
|
2011-05-06 18:20:52 -04:00
|
|
|
# Running specs from the command line:
|
2010-11-01 01:34:50 -04:00
|
|
|
# $ rake spec # Entire spec suite.
|
2011-05-06 18:20:52 -04:00
|
|
|
# $ ruby -S rspec spec/logger_spec.rb # Individual spec file.
|
2010-10-31 22:21:26 -04:00
|
|
|
#
|
2010-03-25 00:31:59 -04:00
|
|
|
$LOAD_PATH.unshift(File.dirname(__FILE__))
|
|
|
|
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
|
|
|
require 'ap'
|
|
|
|
|
2010-04-08 22:57:58 -04:00
|
|
|
def stub_dotfile!
|
|
|
|
dotfile = File.join(ENV["HOME"], ".aprc")
|
|
|
|
File.should_receive(:readable?).at_least(:once).with(dotfile).and_return(false)
|
2010-03-25 00:31:59 -04:00
|
|
|
end
|
2011-05-04 20:20:07 -04:00
|
|
|
|
|
|
|
# Infinity Test runs tests as subprocesses, which sets STDOUT.tty? to false and
|
|
|
|
# would otherwise prematurely disallow colors. We'll test the defaults later.
|
|
|
|
AwesomePrint.force_colors!
|