2013-04-16 18:06:11 -04:00
|
|
|
require 'rake/testtask'
|
|
|
|
|
|
|
|
desc "Default Task"
|
|
|
|
task :default => :test
|
|
|
|
|
|
|
|
# Run the unit tests
|
|
|
|
|
|
|
|
desc "Run all unit tests"
|
2013-08-05 18:47:49 -04:00
|
|
|
task :test => ["test:template", "test:integration:action_pack", "test:integration:active_record"]
|
2013-04-16 18:06:11 -04:00
|
|
|
|
|
|
|
namespace :test do
|
2013-06-20 12:24:50 -04:00
|
|
|
task :isolated do
|
2013-10-02 17:57:58 -04:00
|
|
|
Dir.glob("test/{actionpack,activerecord,template}/**/*_test.rb").all? do |file|
|
2013-07-26 05:07:25 -04:00
|
|
|
sh(Gem.ruby, '-w', '-Ilib:test', file)
|
2013-06-20 12:24:50 -04:00
|
|
|
end or raise "Failures"
|
2013-04-16 18:06:11 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
Rake::TestTask.new(:template) do |t|
|
|
|
|
t.libs << 'test'
|
2015-03-05 13:09:20 -05:00
|
|
|
t.test_files = Dir.glob('test/template/**/*_test.rb')
|
2013-08-05 18:43:32 -04:00
|
|
|
t.warning = true
|
|
|
|
t.verbose = true
|
2014-09-27 10:37:44 -04:00
|
|
|
t.ruby_opts = ["--dev"] if defined?(JRUBY_VERSION)
|
2013-04-16 18:06:11 -04:00
|
|
|
end
|
|
|
|
|
2013-08-05 18:43:32 -04:00
|
|
|
namespace :integration do
|
|
|
|
desc 'ActiveRecord Integration Tests'
|
|
|
|
Rake::TestTask.new(:active_record) do |t|
|
|
|
|
t.libs << 'test'
|
|
|
|
t.test_files = Dir.glob("test/activerecord/*_test.rb")
|
|
|
|
t.warning = true
|
|
|
|
t.verbose = true
|
2014-09-27 10:37:44 -04:00
|
|
|
t.ruby_opts = ["--dev"] if defined?(JRUBY_VERSION)
|
2013-08-05 18:43:32 -04:00
|
|
|
end
|
2013-08-05 18:47:49 -04:00
|
|
|
|
|
|
|
desc 'ActionPack Integration Tests'
|
|
|
|
Rake::TestTask.new(:action_pack) do |t|
|
|
|
|
t.libs << 'test'
|
2013-08-13 16:28:51 -04:00
|
|
|
t.test_files = Dir.glob("test/actionpack/**/*_test.rb")
|
2013-08-05 18:47:49 -04:00
|
|
|
t.warning = true
|
|
|
|
t.verbose = true
|
2014-09-27 10:37:44 -04:00
|
|
|
t.ruby_opts = ["--dev"] if defined?(JRUBY_VERSION)
|
2013-08-05 18:47:49 -04:00
|
|
|
end
|
2013-08-05 18:43:32 -04:00
|
|
|
end
|
2013-04-16 18:06:11 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
task :lines do
|
2015-05-22 08:37:02 -04:00
|
|
|
load File.expand_path('..', File.dirname(__FILE__)) + '/tools/line_statistics'
|
|
|
|
files = FileList["lib/**/*.rb"]
|
|
|
|
CodeTools::LineStatistics.new(files).print_loc
|
2013-04-16 18:06:11 -04:00
|
|
|
end
|