fuel-library/tests/noop/Rakefile
Dmitry Ilyin 4c39102720 Improve Noop tests
* Many fixes and improvements

Related blueprint: deployment-dryrun

Change-Id: I7cdb4ea455866480a773b803f4dddd66f0fd56d1
Fuel-CI: disable
2015-04-21 17:08:22 +03:00

13 lines
325 B
Ruby

require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec) do |t|
t.rspec_opts = '--deprecation-out deprecations.log --color --tty --format documentation'
if ENV['NOOP_TEST']
t.pattern = 'spec/*/' + ENV['NOOP_TEST'] + '_spec.rb'
else
t.pattern = 'spec/{*,*/*}/*_spec.rb'
end
end
task :default => :spec