aws-missing-tools/spec/spec_helper.rb

13 lines
213 B
Ruby
Raw Normal View History

2013-05-30 23:19:08 +00:00
require 'rspec'
require 'aws-missing-tools'
Dir['spec/support/**/*.rb'].each { |f| require File.expand_path(f) }
RSpec.configure do |config|
config.order = 'random'
config.before do
AWS.stub!
end
2013-05-30 23:19:08 +00:00
end