Sha256: 216a82038aea6d7adbed106eca1fbd3b9aeb2d5efe25b245d08d4a735471729e
Contents?: true
Size: 588 Bytes
Versions: 1
Compression:
Stored size: 588 Bytes
Contents
require 'tasks/config' #------------------------------------------------------------------------------- # configuration for running unit tests. This shows up as the test:default task #------------------------------------------------------------------------------- if test_config = Configuration.for_if_exist?('test') then if test_config.mode == "testunit" then namespace :test do task :default => :test require 'rake/testtask' Rake::TestTask.new do |t| t.test_files = FileList["test/*_test.rb"] t.verbose = true end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
activerecord-amalgalite-adapter-0.8.0 | tasks/testunit.rake |