Update profiler changelog for integration session script usage

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8066 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Jeremy Kemper 2007-11-01 08:16:01 +00:00
parent dbcf59d47d
commit 3953839e99
1 changed files with 6 additions and 0 deletions

View File

@ -23,6 +23,12 @@
* Partials also set 'object' to the default partial variable. #8823 [Nick Retallack, Jeremy Kemper]
* Request profiler. [Jeremy Kemper]
$ cat login_session.rb
get_with_redirect '/'
say "GET / => #{path}"
post_with_redirect '/sessions', :username => 'john', :password => 'doe'
say "POST /sessions => #{path}"
$ ./script/performance/request -n 10 login_session.rb
* Disabled checkboxes don't submit a form value. #9301 [vladr, robinjfisher]