diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2012-05-11 19:25:19 -0300 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2012-05-11 19:25:19 -0300 |
commit | fbf1858ed9fdb98f1489e045936d871978de928f (patch) | |
tree | e9c52033e1ac6c374cc672ec5703503a2ff6af6e | |
parent | 36dd1857dc097b6fbc65396bfabaa152da9c899f (diff) | |
download | rails-fbf1858ed9fdb98f1489e045936d871978de928f.tar.gz rails-fbf1858ed9fdb98f1489e045936d871978de928f.tar.bz2 rails-fbf1858ed9fdb98f1489e045936d871978de928f.zip |
Add test directory to TestTask's libs
-rw-r--r-- | actionpack/Rakefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/actionpack/Rakefile b/actionpack/Rakefile index 17d95bfd1d..50e3bb0d48 100644 --- a/actionpack/Rakefile +++ b/actionpack/Rakefile @@ -23,6 +23,7 @@ end namespace :test do Rake::TestTask.new(:isolated) do |t| + t.libs << 'test' t.pattern = 'test/ts_isolated.rb' end |