require 'rake/testtask' PKG_NAME = 'acts_as_magic_model' PKG_VERSION = '0.2' PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}" desc 'Test the plugin' Rake::TestTask.new(:test) do |t| t.libs << 'lib' t.pattern = 'test/unit/**/*_test.rb' # Update this line t.verbose = true end