Fix #3551 rake spec fails to run integration specs

A typo prevents the Rakefile from finding tests in spec/integration

Signed-off-by: Jesse Wolfe <jes5199@gmail.com>
This commit is contained in:
Jesse Wolfe 2010-04-13 13:41:47 -07:00 коммит произвёл test branch
Родитель 6a66d5edea
Коммит 9b2b0ecf22
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -44,7 +44,7 @@ task :puppetpackages => [:create_gem, :package]
Spec::Rake::SpecTask.new do |t|
t.spec_opts = ['--format','s', '--loadby','mtime']
t.pattern ='spec/{unit,integation}/**/*.rb'
t.pattern ='spec/{unit,integration}/**/*.rb'
t.fail_on_error = false
end