tracks/vendor/gems/aruba-0.2.2/features/support/env.rb
Reinier Balt 322248963b fix the conflict between aruba and unit/functional tests by backporting a fix from newer versions of aruba
gemspec changes to comment out dep on cucumber 
lib/aruba.rb emptied

We need to move forward to recent versions of rails/cucumber/etc
2012-03-19 19:59:04 +01:00

15 lines
No EOL
257 B
Ruby

$LOAD_PATH.unshift(File.dirname(__FILE__) + '/../../lib')
require 'aruba'
require 'fileutils'
begin
# rspec-2
require 'rspec/expectations'
rescue LoadError
# rspec-1
require 'spec/expectations'
end
Before do
FileUtils.rm(Dir['config/*.yml'])
end