aboutsummaryrefslogtreecommitdiffstats
path: root/railties/Rakefile
blob: 3421d9b4645266ae2b406efa9204b53d0b1efefc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
require 'rake/testtask'

task :default => :test

task :package
task "package:clean"

desc "Run all unit tests"
task :test => 'test:isolated'

namespace :test do
  task :isolated do
    dirs = (ENV["TEST_DIR"] || ENV["TEST_DIRS"] || "**").split(",")
    test_files = dirs.map { |dir| "test/#{dir}/*_test.rb" }
    Dir[*test_files].each do |file|
      next true if file.include?("fixtures")
      dash_i = [
        'test',
        'lib',
        "#{File.dirname(__FILE__)}/../activesupport/lib",
        "#{File.dirname(__FILE__)}/../actionpack/lib",
        "#{File.dirname(__FILE__)}/../activemodel/lib"
      ]
      ruby "-w", "-I#{dash_i.join ':'}", file
    end
  end
end

Rake::TestTask.new('test:regular') do |t|
  t.libs << 'test' << "#{File.dirname(__FILE__)}/../activesupport/lib"
  t.pattern = 'test/**/*_test.rb'
  t.warning = false
  t.verbose = true
  t.ruby_opts = ["--dev"] if defined?(JRUBY_VERSION)
end