From 38ea84aab6a366a89fba83f8852b2c3b29c0cac9 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sun, 27 Feb 2005 20:43:08 +0000 Subject: [PATCH] Fixed test/mocks/testing to the correct test/mocks/test #740 git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@809 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- railties/CHANGELOG | 2 ++ railties/Rakefile | 2 +- .../generators/applications/app/app_generator.rb | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/railties/CHANGELOG b/railties/CHANGELOG index 1b7e6c0da9..f881dd07d5 100644 --- a/railties/CHANGELOG +++ b/railties/CHANGELOG @@ -1,5 +1,7 @@ *SVN* +* Fixed test/mocks/testing to the correct test/mocks/test #740 + * Added early failure if the Ruby version isn't 1.8.2 or above #735 * Fixed the missing shebang in main "rails" script #736 diff --git a/railties/Rakefile b/railties/Rakefile index 9be89e8f5f..b54673ef3b 100644 --- a/railties/Rakefile +++ b/railties/Rakefile @@ -17,7 +17,7 @@ PKG_DESTINATION = ENV["RAILS_PKG_DESTINATION"] || "../#{PKG_NAME}" BASE_DIRS = %w( app config/environments components db doc log lib public script test vendor ) APP_DIRS = %w( apis models controllers helpers views views/layouts ) PUBLIC_DIRS = %w( images javascripts stylesheets ) -TEST_DIRS = %w( fixtures unit functional mocks mocks/development mocks/testing ) +TEST_DIRS = %w( fixtures unit functional mocks mocks/development mocks/test ) LOG_FILES = %w( server.log development.log test.log production.log ) HTML_FILES = %w( 404.html 500.html index.html ) diff --git a/railties/lib/rails_generator/generators/applications/app/app_generator.rb b/railties/lib/rails_generator/generators/applications/app/app_generator.rb index 347140358b..dc731c4e3f 100644 --- a/railties/lib/rails_generator/generators/applications/app/app_generator.rb +++ b/railties/lib/rails_generator/generators/applications/app/app_generator.rb @@ -113,7 +113,7 @@ def add_options!(opt) test/fixtures test/functional test/mocks/development - test/mocks/testing + test/mocks/test test/unit vendor ) -- GitLab