Fix rake test for broken version of rake on travis

This commit is contained in:
Jonathan Rudenberg
2012-08-07 09:49:22 -04:00
parent 5c6de2d919
commit f8d46804fd

View File

@@ -9,7 +9,7 @@ task :default => 'test'
Rake::TestTask.new(:test) do |t|
t.libs << '.' << 'lib' << 'test'
t.pattern = 'test/liquid/**/*_test.rb'
t.test_files = FileList['test/liquid/**/*_test.rb']
t.verbose = false
end