master/spec/spec_helper.rb

22 lines
487 B
Ruby
Raw Permalink Normal View History

2010-10-03 21:00:33 +00:00
require 'rubygems'
require 'guard'
require 'rspec'
ENV["GUARD_ENV"] = 'test'
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.filter_run :focus => true
config.run_all_when_everything_filtered = true
2010-10-03 21:00:33 +00:00
config.before(:each) do
@fixture_path = Pathname.new(File.expand_path('../fixtures/', __FILE__))
2010-10-03 21:00:33 +00:00
end
end