aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/Rakefile
diff options
context:
space:
mode:
authorJoshua Peek <josh@joshpeek.com>2010-02-28 18:26:00 -0600
committerJoshua Peek <josh@joshpeek.com>2010-02-28 18:26:00 -0600
commit1a2fba1b6bcb3fdc5268760f67ab0e4a20fa1059 (patch)
tree4062ae6d3d699cae9aad9e603440130e1640f7cb /activemodel/Rakefile
parentcbefcc88b38f0ec3c885b450962623017f4cc64c (diff)
downloadrails-1a2fba1b6bcb3fdc5268760f67ab0e4a20fa1059.tar.gz
rails-1a2fba1b6bcb3fdc5268760f67ab0e4a20fa1059.tar.bz2
rails-1a2fba1b6bcb3fdc5268760f67ab0e4a20fa1059.zip
don't expand test path
Diffstat (limited to 'activemodel/Rakefile')
-rwxr-xr-xactivemodel/Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/activemodel/Rakefile b/activemodel/Rakefile
index 14c02f183f..556ea2ec0b 100755
--- a/activemodel/Rakefile
+++ b/activemodel/Rakefile
@@ -13,7 +13,7 @@ require 'rake/testtask'
task :default => :test
Rake::TestTask.new do |t|
- t.libs << "#{dir}/test"
+ t.libs << "test"
t.test_files = Dir.glob("#{dir}/test/cases/**/*_test.rb").sort
t.warning = true
end