1
0
Fork 0
mirror of https://github.com/haml/haml.git synced 2022-11-09 12:33:31 -05:00

Make sure we don't run linked Rails tests.

This commit is contained in:
Nathan Weizenbaum 2008-06-19 01:26:21 -04:00
parent c2ad4bd281
commit 0f49933913

View file

@ -19,7 +19,9 @@ require 'rake/testtask'
Rake::TestTask.new do |t|
t.libs << 'lib'
t.pattern = 'test/**/*_test.rb'
test_files = FileList['test/**/*_test.rb']
test_files.exclude('test/rails/*')
t.test_files = test_files
t.verbose = true
end
Rake::Task[:test].send(:add_comment, <<END)