mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
3232f47949
Not very impressive at the moment because Shindo is not wired up but it all helps.
15 lines
220 B
Ruby
15 lines
220 B
Ruby
if ENV["COVERAGE"]
|
|
require "simplecov"
|
|
|
|
SimpleCov.start do
|
|
add_filter "/spec/"
|
|
end
|
|
end
|
|
|
|
require "minitest/autorun"
|
|
require "minitest/spec"
|
|
require "minitest/stub_const"
|
|
|
|
$LOAD_PATH.unshift "lib"
|
|
|
|
require "fog"
|