diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2005-02-07 14:08:38 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2005-02-07 14:08:38 +0000 |
commit | aef06f3b6048c4ba712ec79c0f47a2a59af5dec8 (patch) | |
tree | 143461fcf058efe5d97e1b1bae5ee6800cfb7261 /railties | |
parent | 336c2cbb8f728825139f2ab94b96726935ea18a1 (diff) | |
download | rails-aef06f3b6048c4ba712ec79c0f47a2a59af5dec8.tar.gz rails-aef06f3b6048c4ba712ec79c0f47a2a59af5dec8.tar.bz2 rails-aef06f3b6048c4ba712ec79c0f47a2a59af5dec8.zip |
Added that running test_units and test_functional now performs the clone_structure_to_test as well #566 [rasputnik]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@523 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties')
-rw-r--r-- | railties/CHANGELOG | 2 | ||||
-rwxr-xr-x | railties/fresh_rakefile | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/railties/CHANGELOG b/railties/CHANGELOG index 5e4eea09ce..7de2f06c88 100644 --- a/railties/CHANGELOG +++ b/railties/CHANGELOG @@ -1,5 +1,7 @@ *SVN* +* Added that running test_units and test_functional now performs the clone_structure_to_test as well #566 [rasputnik] + * Added new generator framework that informs about its doings on generation and enables updating and destruction of generated artifacts. See the new script/destroy and script/update for more details #487 [bitsweat] diff --git a/railties/fresh_rakefile b/railties/fresh_rakefile index f14fe5f9fc..00086edb0f 100755 --- a/railties/fresh_rakefile +++ b/railties/fresh_rakefile @@ -8,7 +8,7 @@ require File.dirname(__FILE__) + '/config/environment' require 'code_statistics' desc "Run all the tests on a fresh test database" -task :default => [ :clone_structure_to_test, :test_units, :test_functional ] +task :default => [ :test_units, :test_functional ] desc "Generate API documentatio, show coding stats" task :doc => [ :appdoc, :stats ] @@ -20,6 +20,7 @@ Rake::TestTask.new("test_units") { |t| t.pattern = 'test/unit/**/*_test.rb' t.verbose = true } +task :test_units => [ :clone_structure_to_test ] desc "Run the functional tests in test/functional" Rake::TestTask.new("test_functional") { |t| @@ -27,6 +28,7 @@ Rake::TestTask.new("test_functional") { |t| t.pattern = 'test/functional/**/*_test.rb' t.verbose = true } +task :test_functional => [ :clone_structure_to_test ] desc "Generate documentation for the application" Rake::RDocTask.new("appdoc") { |rdoc| |