spec/spec_helper.rb in shuttle-deploy-0.2.0.beta15 vs spec/spec_helper.rb in shuttle-deploy-0.2.0.beta16
- old
+ new
@@ -1,12 +1,14 @@
-require 'simplecov'
+require "simplecov"
+
SimpleCov.start do
- add_filter "/spec/"
+ add_filter "spec/"
+ add_filter ".bundle"
end
$:.unshift File.expand_path("../..", __FILE__)
-require 'lib/shuttle'
+require "lib/shuttle"
def fixture_path(filename=nil)
path = File.expand_path("../fixtures", __FILE__)
filename.nil? ? path : File.join(path, filename)
end
\ No newline at end of file