master/spec/spec_helper.rb

21 lines
467 B
Ruby
Raw Normal View History

2010-10-03 21:00:33 +00:00
require 'rubygems'
require 'guard'
require 'rspec'
Dir["#{File.expand_path('..', __FILE__)}/support/**/*.rb"].each { |f| require f }
puts "Please do not update/create files while tests are running."
2010-10-03 21:00:33 +00:00
RSpec.configure do |config|
config.color_enabled = true
config.before(:each) do
ENV["GUARD_ENV"] = 'test'
@fixture_path = Pathname.new(File.expand_path('../fixtures/', __FILE__))
2010-10-03 21:00:33 +00:00
end
config.after(:each) do
ENV["GUARD_ENV"] = nil
end
2010-10-03 21:00:33 +00:00
end