diff options
author | Mike Gunderloy <MikeG1@larkfarm.com> | 2008-11-04 09:53:10 -0600 |
---|---|---|
committer | Mike Gunderloy <MikeG1@larkfarm.com> | 2008-11-04 09:53:10 -0600 |
commit | f7540e9b61b1d337645530e769b9802f29f84172 (patch) | |
tree | 5e8f6d9adb61d2e35ef4f97d92c0b1dc1ce13188 /railties | |
parent | 851a4dce1597a94975dcf42c4b53a4b548e44ebb (diff) | |
download | rails-f7540e9b61b1d337645530e769b9802f29f84172.tar.gz rails-f7540e9b61b1d337645530e769b9802f29f84172.tar.bz2 rails-f7540e9b61b1d337645530e769b9802f29f84172.zip |
Typo fix in testing guide
Diffstat (limited to 'railties')
-rw-r--r-- | railties/doc/guides/source/testing_rails_applications.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/doc/guides/source/testing_rails_applications.txt b/railties/doc/guides/source/testing_rails_applications.txt index da756cb550..31b6fc2cfa 100644 --- a/railties/doc/guides/source/testing_rails_applications.txt +++ b/railties/doc/guides/source/testing_rails_applications.txt @@ -513,7 +513,7 @@ Another example: Calling the +:view+ action, passing an +id+ of 12 as the +param get(:view, {'id' => '12'}, nil, {'message' => 'booya!'}) -------------------------------------------------- -=== Available Request Types for Functional Tests=== +=== Available Request Types for Functional Tests === If you're familiar with the HTTP protocol, you'll know that +get+ is a type of request. There are 5 request types supported in Rails functional tests: |