mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-26 04:21:36 +00:00
10 lines
215 B
Ruby
10 lines
215 B
Ruby
require 'rake/testtask'
|
|
|
|
desc 'Default: run unit tests.'
|
|
task :default => :test
|
|
|
|
desc 'Test the active_model_helper plugin.'
|
|
Rake::TestTask.new(:test) do |t|
|
|
t.libs << 'test'
|
|
t.pattern = 'test/**/*_test.rb'
|
|
end
|