aboutsummaryrefslogtreecommitdiffstats
path: root/railties/CHANGELOG
diff options
context:
space:
mode:
authorJamis Buck <jamis@37signals.com>2006-02-28 18:57:32 +0000
committerJamis Buck <jamis@37signals.com>2006-02-28 18:57:32 +0000
commit1a91abe6450b5bcb2a7fe1de1494b12c34288e50 (patch)
tree7f9b9f0c938c4241f09dea1201c318fb3967d648 /railties/CHANGELOG
parent9507f5dcc90e22a6355d048f7fe00476e852889f (diff)
downloadrails-1a91abe6450b5bcb2a7fe1de1494b12c34288e50.tar.gz
rails-1a91abe6450b5bcb2a7fe1de1494b12c34288e50.tar.bz2
rails-1a91abe6450b5bcb2a7fe1de1494b12c34288e50.zip
Add integration test support to app generation and testing
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3702 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/CHANGELOG')
-rw-r--r--railties/CHANGELOG2
1 files changed, 2 insertions, 0 deletions
diff --git a/railties/CHANGELOG b/railties/CHANGELOG
index 8df21ee5f2..ba834e847c 100644
--- a/railties/CHANGELOG
+++ b/railties/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Add integration test support to app generation and testing [Jamis Buck]
+
* Added namespaces to all tasks, so for example load_fixtures is now db:fixtures:load. All the old task names are still valid, they just point to the new namespaced names. "rake -T" will only show the namespaced ones, though [DHH]
* CHANGED DEFAULT: ActiveRecord::Base.schema_format is now :ruby by default instead of :sql. This means that we'll assume you want to live in the world of db/schema.rb where the grass is green and the girls are pretty. If your schema contains un-dumpable elements, such as constraints or database-specific column types, you just got an invitation to either 1) patch the dumper to include foreign key support, 2) stop being db specific, or 3) just change the default in config/environment.rb to config.active_record.schema_format = :sql -- we even include an example for that on new Rails skeletons now. Brought to you by the federation of opinionated framework builders! [DHH]