mirror of https://github.com/rails/rails
Minor changes to actionpack/actionview Rakefile
This commit is contained in:
parent
16caf63d32
commit
c4f588213b
|
@ -5,11 +5,7 @@ desc "Default Task"
|
|||
task :default => :test
|
||||
|
||||
# Run the unit tests
|
||||
|
||||
desc "Run all unit tests"
|
||||
task :test => [:test_action_pack]
|
||||
|
||||
Rake::TestTask.new(:test_action_pack) do |t|
|
||||
Rake::TestTask.new do |t|
|
||||
t.libs << 'test'
|
||||
|
||||
# make sure we include the tests in alphabetical order as on some systems
|
||||
|
|
|
@ -12,11 +12,7 @@ task :test => [:test_action_view, :test_active_record_integration]
|
|||
|
||||
Rake::TestTask.new(:test_action_view) do |t|
|
||||
t.libs << 'test'
|
||||
|
||||
# make sure we include the tests in alphabetical order as on some systems
|
||||
# this will not happen automatically and the tests (as a whole) will error
|
||||
t.test_files = Dir.glob('test/template/**/*_test.rb').sort
|
||||
|
||||
t.warning = true
|
||||
t.verbose = true
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue