2009-08-06 18:22:10 -04:00
|
|
|
require "rubygems"
|
2007-12-30 14:35:44 -05:00
|
|
|
|
2009-09-20 12:12:55 -04:00
|
|
|
begin
|
|
|
|
require "spec/rake/spectask"
|
|
|
|
rescue LoadError
|
|
|
|
desc "Run specs"
|
|
|
|
task(:spec) { $stderr.puts '`gem install rspec` to run specs' }
|
|
|
|
else
|
|
|
|
desc "Run specs using RCov (uses mysql database adapter)"
|
|
|
|
Spec::Rake::SpecTask.new(:coverage) do |t|
|
|
|
|
t.spec_files =
|
|
|
|
["spec/connections/mysql_connection.rb"] +
|
|
|
|
FileList['spec/**/*_spec.rb']
|
|
|
|
|
|
|
|
t.rcov = true
|
|
|
|
t.rcov_opts << '--exclude' << "spec,gems"
|
|
|
|
t.rcov_opts << '--text-summary'
|
|
|
|
t.rcov_opts << '--sort' << 'coverage' << '--sort-reverse'
|
|
|
|
t.rcov_opts << '--only-uncovered'
|
|
|
|
end
|
2008-01-14 11:09:46 -05:00
|
|
|
|
2009-09-20 12:12:55 -04:00
|
|
|
namespace :spec do
|
2010-02-10 12:50:59 -05:00
|
|
|
for adapter in %w[mysql sqlite3 postgresql oracle]
|
2009-09-20 12:12:55 -04:00
|
|
|
desc "Run specs with the #{adapter} database adapter"
|
|
|
|
Spec::Rake::SpecTask.new(adapter) do |t|
|
2009-10-01 00:13:56 -04:00
|
|
|
t.spec_opts = ['--options', "\"#{File.dirname(__FILE__)}/spec/spec.opts\""]
|
2009-09-20 12:12:55 -04:00
|
|
|
t.libs << "#{File.dirname(__FILE__)}/vendor/rails/activerecord/lib"
|
|
|
|
t.libs << "#{File.dirname(__FILE__)}/spec"
|
2010-02-10 12:50:59 -05:00
|
|
|
# t.warning = true
|
2009-09-20 12:12:55 -04:00
|
|
|
t.spec_files =
|
2010-03-11 20:08:55 -05:00
|
|
|
["spec/support/connections/#{adapter}_connection.rb"] +
|
|
|
|
["spec/support/schemas/#{adapter}_schema.rb"] +
|
2009-09-20 12:12:55 -04:00
|
|
|
FileList['spec/**/*_spec.rb']
|
|
|
|
end
|
2009-05-16 21:13:32 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-09-20 12:12:55 -04:00
|
|
|
desc "Run specs with mysql and sqlite3 database adapters (default)"
|
2009-11-09 19:38:44 -05:00
|
|
|
task :spec => ["spec:sqlite3", "spec:mysql", "spec:postgresql"]
|
2009-05-16 21:13:32 -04:00
|
|
|
|
2009-09-20 12:12:55 -04:00
|
|
|
desc "Default task is to run specs"
|
|
|
|
task :default => :spec
|
|
|
|
end
|
2009-05-17 14:59:06 -04:00
|
|
|
|
|
|
|
desc 'Removes trailing whitespace'
|
|
|
|
task :whitespace do
|
|
|
|
sh %{find . -name '*.rb' -exec sed -i '' 's/ *$//g' {} \\;}
|
|
|
|
end
|