Changeset 373
- Timestamp:
- 01/10/05 22:58:06 (4 years ago)
- Files:
-
- trunk/actionpack/Rakefile (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/actionpack/Rakefile
r361 r373 21 21 Rake::TestTask.new { |t| 22 22 t.libs << "test" 23 t.pattern = 'test/*/*_test.rb' 23 # make sure we include the controller tests (c*) first as on some systems 24 # this will not happen automatically and the tests (as a whole) will error 25 t.test_files=Dir.glob( "test/c*/*_test.rb" ) + Dir.glob( "test/[ft]*/*_test.rb" ) 26 # t.pattern = 'test/*/*_test.rb' 24 27 t.verbose = true 25 28 }