aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/Rakefile
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-01-02 15:16:59 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-01-02 15:16:59 +0000
commitf4b721904a26f631fbc6d7241b7f9480cc87ea47 (patch)
tree17c00d0e07848e22a0ba270a93c680cff8a4faf9 /activesupport/Rakefile
parent089ef42520968c7852c97faf07e5101685885150 (diff)
downloadrails-f4b721904a26f631fbc6d7241b7f9480cc87ea47.tar.gz
rails-f4b721904a26f631fbc6d7241b7f9480cc87ea47.tar.bz2
rails-f4b721904a26f631fbc6d7241b7f9480cc87ea47.zip
Added test cases and rakefile to Active Support
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@310 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/Rakefile')
-rw-r--r--activesupport/Rakefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/activesupport/Rakefile b/activesupport/Rakefile
new file mode 100644
index 0000000000..fe8ac17112
--- /dev/null
+++ b/activesupport/Rakefile
@@ -0,0 +1,6 @@
+require 'rake/testtask'
+
+task :default => :test
+Rake::TestTask.new { |t|
+ t.pattern = 'test/*_test.rb'
+}