Froze rails gems
[depot.git] / vendor / rails / railties / doc / guides / html / testing_rails_applications.html
diff --git a/vendor/rails/railties/doc/guides/html/testing_rails_applications.html b/vendor/rails/railties/doc/guides/html/testing_rails_applications.html
new file mode 100644 (file)
index 0000000..b8a9976
--- /dev/null
@@ -0,0 +1,1859 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
+<head>
+       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+       <title>A Guide to Testing Rails Applications</title>
+       <!--[if lt IE 8]>
+       <script src="http://ie7-js.googlecode.com/svn/version/2.0(beta3)/IE8.js" type="text/javascript"></script>
+       <![endif]-->
+       <link href="stylesheets/base.css" media="screen" rel="Stylesheet" type="text/css" />
+       <link href="stylesheets/forms.css" media="screen" rel="Stylesheet" type="text/css" />
+       <link href="stylesheets/more.css" media="screen" rel="Stylesheet" type="text/css" />
+       <style type="text/css">
+               div#container {
+       max-width: 900px;
+       padding-bottom: 3em;
+}
+
+div#content {
+       margin-left: 200px;
+}
+
+div#container.notoc {
+       max-width: 600px;
+}
+
+.notoc div#content {
+       margin-left: 0;
+}
+
+pre {
+       line-height: 1.4em;
+}
+
+#content p tt {
+       background: #eeeeee;
+       border: solid 1px #cccccc;
+       padding: 3px;
+}
+
+dt {
+       font-weight: bold;
+}
+
+#content dt tt {
+       font-size: 10pt;
+}
+
+dd {
+       margin-left: 3em;
+}
+
+#content dt tt, #content pre tt {
+       background: none;
+       padding: 0;
+       border: 0;
+}
+
+#content .olist ol {
+       margin-left: 2em;
+}
+
+#header {
+       position: relative;
+       max-width: 840px;
+       margin-left: auto;
+       margin-right: auto;
+}
+
+#header.notoc {
+       max-width: 580px;
+}
+
+#logo {
+       position: absolute;
+       left: 10px;
+       top: 10px;
+       width: 110px;
+       height: 140px;
+}
+
+div#header h1#site_title {
+       background: url('images/ruby_on_rails_by_mike_rundle2.gif') top left no-repeat;
+       position: absolute;
+       width: 392px;
+       height: 55px;
+       left: 145px;
+       top: 20px;
+       margin: 0;
+       padding: 0;
+}
+
+#site_title span {
+       display: none;
+}
+
+#site_title_tagline {
+       display: none;
+}
+
+ul#navMain {
+       position: absolute;
+       margin: 0;
+       padding: 0;
+       top: 97px;
+       left: 145px;
+}
+
+.left-floaty, .right-floaty {
+       padding: 15px;
+}
+
+.admonitionblock,
+.tableblock {
+       margin-left: 1em;
+       margin-right: 1em;
+       margin-top: 0.25em;
+       margin-bottom: 1em;
+}
+
+.admonitionblock .icon {
+       padding-right: 8px;
+}
+
+.admonitionblock .content {
+       border: solid 1px #ffda78;
+       background: #fffebd;
+       padding: 10px;
+       padding-top: 8px;
+       padding-bottom: 8px;
+}
+
+.admonitionblock .title {
+       font-size: 140%;
+       margin-bottom: 0.5em;
+}
+
+.tableblock table {
+       border: solid 1px #aaaaff;
+       background: #f0f0ff;
+}
+
+.tableblock th {
+       background: #e0e0e0;
+}
+
+.tableblock th,
+.tableblock td {
+       padding: 3px;
+       padding-left: 5px;
+       padding-right: 5px;
+}
+
+.sidebarblock {
+       margin-top: 0.25em;
+       margin: 1em;
+       border: solid 1px #ccccbb;
+       padding: 8px;
+       background: #ffffe0;
+}
+
+.sidebarblock .sidebar-title {
+       font-size: 140%;
+       font-weight: 600;
+       margin-bottom: 0.3em;
+}
+
+.sidebarblock .sidebar-content > .para:last-child > p {
+       margin-bottom: 0;
+}
+
+.sidebarblock .sidebar-title a {
+       text-decoration: none;
+}
+
+.sidebarblock .sidebar-title a:hover {
+       text-decoration: underline;
+}
+
+       </style>
+</head>
+<body>
+       <div id="header" >
+               <div id="logo">
+                       <a href="index.html" title="Ruby on Rails"><img src="images/rails_logo_remix.gif" alt="Rails" height="140" width="110" /></a>
+               </div>
+               
+               <h1 id="site_title"><span>Ruby on Rails</span></h1>
+               <h2 id="site_title_tagline">Sustainable productivity for web-application development</h2>
+
+               <ul id="navMain">
+                       <li class="first-child"><a href="http://www.rubyonrails.org/" title="Ruby on Rails" class="ruby_on_rails">Ruby on Rails</a></li>
+                       <li><a class="manuals" href="index.html" title="Manuals Index">Guides Index</a></li>
+               </ul>
+       </div>
+
+       <div id="container">
+               
+               <div id="sidebar">
+                       <h2>Chapters</h2>
+                       <ol>
+                                       <li>
+                                       <a href="#_why_write_tests_for_your_rails_applications">Why Write Tests for your Rails Applications?</a>
+                                       </li>
+                                       <li>
+                                       <a href="#_introduction_to_testing">Introduction to Testing</a>
+                                               <ul>
+                                               
+                                                       <li><a href="#_the_3_environments">The 3 Environments</a></li>
+                                               
+                                                       <li><a href="#_rails_sets_up_for_testing_from_the_word_go">Rails Sets up for Testing from the Word Go</a></li>
+                                               
+                                                       <li><a href="#_the_low_down_on_fixtures">The Low-Down on Fixtures</a></li>
+                                               
+                                               </ul>
+                                       </li>
+                                       <li>
+                                       <a href="#_unit_testing_your_models">Unit Testing your Models</a>
+                                               <ul>
+                                               
+                                                       <li><a href="#_preparing_you_application_for_testing">Preparing you Application for Testing</a></li>
+                                               
+                                                       <li><a href="#_running_tests">Running Tests</a></li>
+                                               
+                                                       <li><a href="#_what_to_include_in_your_unit_tests">What to Include in Your Unit Tests</a></li>
+                                               
+                                                       <li><a href="#_assertions_available">Assertions Available</a></li>
+                                               
+                                                       <li><a href="#_rails_specific_assertions">Rails Specific Assertions</a></li>
+                                               
+                                               </ul>
+                                       </li>
+                                       <li>
+                                       <a href="#_functional_tests_for_your_controllers">Functional Tests for Your Controllers</a>
+                                               <ul>
+                                               
+                                                       <li><a href="#_what_to_include_in_your_functional_tests">What to include in your Functional Tests</a></li>
+                                               
+                                                       <li><a href="#_available_request_types_for_functional_tests">Available Request Types for Functional Tests</a></li>
+                                               
+                                                       <li><a href="#_the_4_hashes_of_the_apocalypse">The 4 Hashes of the Apocalypse</a></li>
+                                               
+                                                       <li><a href="#_instance_variables_available">Instance Variables Available</a></li>
+                                               
+                                                       <li><a href="#_a_fuller_functional_test_example">A Fuller Functional Test Example</a></li>
+                                               
+                                                       <li><a href="#_testing_views">Testing Views</a></li>
+                                               
+                                               </ul>
+                                       </li>
+                                       <li>
+                                       <a href="#_integration_testing">Integration Testing</a>
+                                               <ul>
+                                               
+                                                       <li><a href="#_helpers_available_for_integration_tests">Helpers Available for Integration tests</a></li>
+                                               
+                                                       <li><a href="#_integration_testing_examples">Integration Testing Examples</a></li>
+                                               
+                                               </ul>
+                                       </li>
+                                       <li>
+                                       <a href="#_rake_tasks_for_running_your_tests">Rake Tasks for Running your Tests</a>
+                                       </li>
+                                       <li>
+                                       <a href="#_brief_note_about_test_unit">Brief Note About Test::Unit</a>
+                                       </li>
+                                       <li>
+                                       <a href="#_setup_and_teardown">Setup and Teardown</a>
+                                       </li>
+                                       <li>
+                                       <a href="#_testing_routes">Testing Routes</a>
+                                       </li>
+                                       <li>
+                                       <a href="#_testing_your_mailers">Testing Your Mailers</a>
+                                               <ul>
+                                               
+                                                       <li><a href="#_keeping_the_postman_in_check">Keeping the Postman in Check</a></li>
+                                               
+                                                       <li><a href="#_unit_testing">Unit Testing</a></li>
+                                               
+                                                       <li><a href="#_functional_testing">Functional Testing</a></li>
+                                               
+                                               </ul>
+                                       </li>
+                                       <li>
+                                       <a href="#_other_testing_approaches">Other Testing Approaches</a>
+                                       </li>
+                                       <li>
+                                       <a href="#_changelog">Changelog</a>
+                                       </li>
+                       </ol>
+               </div>
+               
+               <div id="content">
+                               <h1>A Guide to Testing Rails Applications</h1>
+                       <div id="preamble">\r
+<div class="sectionbody">\r
+<div class="para"><p>This guide covers built-in mechanisms offered by Rails to test your application. By referring to this guide, you will be able to:</p></div>\r
+<div class="ilist"><ul>\r
+<li>\r
+<p>\r
+Understand Rails testing terminology\r
+</p>\r
+</li>\r
+<li>\r
+<p>\r
+Write unit, functional and integration tests for your application\r
+</p>\r
+</li>\r
+<li>\r
+<p>\r
+Identify other popular testing approaches and plugins\r
+</p>\r
+</li>\r
+</ul></div>\r
+<div class="para"><p>This guide won't teach you to write a Rails application; it assumes basic familiarity with the Rails way of doing things.</p></div>\r
+</div>\r
+</div>\r
+<h2 id="_why_write_tests_for_your_rails_applications">1. Why Write Tests for your Rails Applications?</h2>\r
+<div class="sectionbody">\r
+<div class="ilist"><ul>\r
+<li>\r
+<p>\r
+Rails makes it super easy to write your tests. It starts by producing skeleton test code in background while you are creating your models and controllers.\r
+</p>\r
+</li>\r
+<li>\r
+<p>\r
+By simply running your Rails tests you can ensure your code adheres to the desired functionality even after some major code refactoring.\r
+</p>\r
+</li>\r
+<li>\r
+<p>\r
+Rails tests can also simulate browser requests and thus you can test your application's response without having to test it through your browser.\r
+</p>\r
+</li>\r
+</ul></div>\r
+</div>\r
+<h2 id="_introduction_to_testing">2. Introduction to Testing</h2>\r
+<div class="sectionbody">\r
+<div class="para"><p>Testing support was woven into the Rails fabric from the beginning. It wasn't an "oh! let's bolt on support for running tests because they're new and cool" epiphany. Just about every Rails application interacts heavily with a database - and, as a result, your tests will need a database to interact with as well. To write efficient tests, you'll need to understand how to set up this database and populate it with sample data.</p></div>\r
+<h3 id="_the_3_environments">2.1. The 3 Environments</h3>\r
+<div class="para"><p>Every Rails application you build has 3 sides: a side for production, a side for development, and a side for testing.</p></div>\r
+<div class="para"><p>One place you'll find this distinction is in the <tt>config/database.yml</tt> file. This YAML configuration file has 3 different sections defining 3 unique database setups:</p></div>\r
+<div class="ilist"><ul>\r
+<li>\r
+<p>\r
+production\r
+</p>\r
+</li>\r
+<li>\r
+<p>\r
+development\r
+</p>\r
+</li>\r
+<li>\r
+<p>\r
+test\r
+</p>\r
+</li>\r
+</ul></div>\r
+<div class="para"><p>This allows you to set up and interact with test data without any danger of your tests altering data from your production environment.</p></div>\r
+<div class="para"><p>For example, suppose you need to test your new <tt>delete_this_user_and_every_everything_associated_with_it</tt> function. Wouldn't you want to run this in an environment where it makes no difference if you destroy data or not?</p></div>\r
+<div class="para"><p>When you do end up destroying your testing database (and it will happen, trust me), you can rebuild it from scratch according to the specs defined in the development database. You can do this by running <tt>rake db:test:prepare</tt>.</p></div>\r
+<h3 id="_rails_sets_up_for_testing_from_the_word_go">2.2. Rails Sets up for Testing from the Word Go</h3>\r
+<div class="para"><p>Rails creates a <tt>test</tt> folder for you as soon as you create a Rails project using <tt>rails <em>application_name</em></tt>. If you list the contents of this folder then you shall see:</p></div>\r
+<div class="listingblock">\r
+<div class="content"><!-- Generator: GNU source-highlight 2.9\r
+by Lorenzo Bettini\r
+http://www.lorenzobettini.it\r
+http://www.gnu.org/software/src-highlite -->\r
+<pre><tt>$ ls -F <span style="font-weight: bold"><span style="color: #0000FF">test</span></span><span style="color: #990000">/</span>\r
+\r
+fixtures<span style="color: #990000">/</span>       functional<span style="color: #990000">/</span>     integration<span style="color: #990000">/</span>    test_helper<span style="color: #990000">.</span>rb  unit<span style="color: #990000">/</span>\r
+</tt></pre></div></div>\r
+<div class="para"><p>The <tt>unit</tt> folder is meant to hold tests for your models, the <tt>functional</tt> folder is meant to hold tests for your controllers, and the <tt>integration</tt> folder is meant to hold tests that involve any number of controllers interacting. Fixtures are a way of organizing test data; they reside in the <tt>fixtures</tt> folder. The <tt>test_helper.rb</tt> file holds the default configuration for your tests.</p></div>\r
+<h3 id="_the_low_down_on_fixtures">2.3. The Low-Down on Fixtures</h3>\r
+<div class="para"><p>For good tests, you'll need to give some thought to setting up test data. In Rails, you can handle this by defining and customizing fixtures.</p></div>\r
+<h4 id="_what_are_fixtures">2.3.1. What Are Fixtures?</h4>\r
+<div class="para"><p><em>Fixtures</em> is a fancy word for sample data. Fixtures allow you to populate your testing database with predefined data before your tests run. Fixtures are database independent and assume one of two formats: <strong>YAML</strong> or <strong>CSV</strong>. In this guide we will use <strong>YAML</strong> which is the preferred format.</p></div>\r
+<div class="para"><p>You'll find fixtures under your <tt>test/fixtures</tt> directory. When you run <tt>script/generate model</tt> to create a new model, fixture stubs will be automatically created and placed in this directory.</p></div>\r
+<h4 id="_yaml">2.3.2. YAML</h4>\r
+<div class="para"><p>YAML-formatted fixtures are a very human-friendly way to describe your sample data. These types of fixtures have the <strong>.yml</strong> file extension (as in <tt>users.yml</tt>).</p></div>\r
+<div class="para"><p>Here's a sample YAML fixture file:</p></div>\r
+<div class="listingblock">\r
+<div class="content"><!-- Generator: GNU source-highlight 2.9\r
+by Lorenzo Bettini\r
+http://www.lorenzobettini.it\r
+http://www.gnu.org/software/src-highlite -->\r
+<pre><tt><span style="font-style: italic"><span style="color: #9A1900"># low &amp; behold!  I am a YAML comment!</span></span>\r
+david<span style="color: #990000">:</span>\r
+ name<span style="color: #990000">:</span> David Heinemeier Hansson\r
+ birthday<span style="color: #990000">:</span> <span style="color: #993399">1979</span><span style="color: #990000">-</span><span style="color: #993399">10</span><span style="color: #990000">-</span><span style="color: #993399">15</span>\r
+ profession<span style="color: #990000">:</span> Systems development\r
+\r
+steve<span style="color: #990000">:</span>\r
+ name<span style="color: #990000">:</span> Steve Ross Kellock\r
+ birthday<span style="color: #990000">:</span> <span style="color: #993399">1974</span><span style="color: #990000">-</span><span style="color: #993399">09</span><span style="color: #990000">-</span><span style="color: #993399">27</span>\r
+ profession<span style="color: #990000">:</span> guy with keyboard\r
+</tt></pre></div></div>\r
+<div class="para"><p>Each fixture is given a name followed by an indented list of colon-separated key/value pairs. Records are separated by a blank space. You can place comments in a fixture file by using the # character in the first column.</p></div>\r
+<h4 id="_erb_in_it_up">2.3.3. ERb'in It Up</h4>\r
+<div class="para"><p>ERb allows you embed ruby code within templates. Both the YAML and CSV fixture formats are pre-processed with ERb when you load fixtures. This allows you to use Ruby to help you generate some sample data.</p></div>\r
+<div class="listingblock">\r
+<div class="content"><!-- Generator: GNU source-highlight 2.9\r
+by Lorenzo Bettini\r
+http://www.lorenzobettini.it\r
+http://www.gnu.org/software/src-highlite -->\r
+<pre><tt><span style="color: #FF0000">&lt;% earth_size = 20 -%&gt;</span>\r
+mercury<span style="color: #990000">:</span>\r
+  size<span style="color: #990000">:</span> <span style="color: #FF0000">&lt;%= earth_size / 50 %&gt;</span>\r
+  brightest_on<span style="color: #990000">:</span> <span style="color: #FF0000">&lt;%= 113.days.ago.to_s(:db) %&gt;</span>\r
+\r
+venus<span style="color: #990000">:</span>\r
+  size<span style="color: #990000">:</span> <span style="color: #FF0000">&lt;%= earth_size / 2 %&gt;</span>\r
+  brightest_on<span style="color: #990000">:</span> <span style="color: #FF0000">&lt;%= 67.days.ago.to_s(:db) %&gt;</span>\r
+\r
+mars<span style="color: #990000">:</span>\r
+  size<span style="color: #990000">:</span> <span style="color: #FF0000">&lt;%= earth_size - 69 %&gt;</span>\r
+  brightest_on<span style="color: #990000">:</span> <span style="color: #FF0000">&lt;%= 13.days.from_now.to_s(:db) %&gt;</span>\r
+</tt></pre></div></div>\r
+<div class="para"><p>Anything encased within the</p></div>\r
+<div class="listingblock">\r
+<div class="content"><!-- Generator: GNU source-highlight 2.9\r
+by Lorenzo Bettini\r
+http://www.lorenzobettini.it\r
+http://www.gnu.org/software/src-highlite -->\r
+<pre><tt><span style="color: #FF0000">&lt;% %&gt;</span>\r
+</tt></pre></div></div>\r
+<div class="para"><p>tag is considered Ruby code. When this fixture is loaded, the <tt>size</tt> attribute of the three records will be set to 20/50, 20/2, and 20-69 respectively. The <tt>brightest_on</tt> attribute will also be evaluated and formatted by Rails to be compatible with the database.</p></div>\r
+<h4 id="_fixtures_in_action">2.3.4. Fixtures in Action</h4>\r
+<div class="para"><p>Rails by default automatically loads all fixtures from the <em>test/fixtures</em> folder for your unit and functional test. Loading involves three steps:</p></div>\r
+<div class="ilist"><ul>\r
+<li>\r
+<p>\r
+Remove any existing data from the table corresponding to the fixture\r
+</p>\r
+</li>\r
+<li>\r
+<p>\r
+Load the fixture data into the table\r
+</p>\r
+</li>\r
+<li>\r
+<p>\r
+Dump the fixture data into a variable in case you want to access it directly\r
+</p>\r
+</li>\r
+</ul></div>\r
+<h4 id="_hashes_with_special_powers">2.3.5. Hashes with Special Powers</h4>\r
+<div class="para"><p>Fixtures are basically Hash objects. As mentioned in point #3 above, you can access the hash object directly because it is automatically setup as a local variable of the test case. For example:</p></div>\r
+<div class="listingblock">\r
+<div class="content"><!-- Generator: GNU source-highlight 2.9\r
+by Lorenzo Bettini\r
+http://www.lorenzobettini.it\r
+http://www.gnu.org/software/src-highlite -->\r
+<pre><tt><span style="font-style: italic"><span style="color: #9A1900"># this will return the Hash for the fixture named david</span></span>\r
+users<span style="color: #990000">(:</span>david<span style="color: #990000">)</span>\r
+\r
+<span style="font-style: italic"><span style="color: #9A1900"># this will return the property for david called id</span></span>\r
+users<span style="color: #990000">(:</span>david<span style="color: #990000">).</span>id\r
+</tt></pre></div></div>\r
+<div class="para"><p>Fixtures can also transform themselves into the form of the original class. Thus, you can get at the methods only available to that class.</p></div>\r
+<div class="listingblock">\r
+<div class="content"><!-- Generator: GNU source-highlight 2.9\r
+by Lorenzo Bettini\r
+http://www.lorenzobettini.it\r
+http://www.gnu.org/software/src-highlite -->\r
+<pre><tt><span style="font-style: italic"><span style="color: #9A1900"># using the find method, we grab the "real" david as a User</span></span>\r
+david <span style="color: #990000">=</span> users<span style="color: #990000">(:</span>david<span style="color: #990000">).</span>find\r
+\r
+<span style="font-style: italic"><span style="color: #9A1900"># and now we have access to methods only available to a User class</span></span>\r
+email<span style="color: #990000">(</span>david<span style="color: #990000">.</span>girlfriend<span style="color: #990000">.</span>email<span style="color: #990000">,</span> david<span style="color: #990000">.</span>location_tonight<span style="color: #990000">)</span>\r
+</tt></pre></div></div>\r
+</div>\r
+<h2 id="_unit_testing_your_models">3. Unit Testing your Models</h2>\r
+<div class="sectionbody">\r
+<div class="para"><p>In Rails, unit tests are what you write to test your models.</p></div>\r
+<div class="para"><p>For this guide we will be using Rails <em>scaffolding</em>. It will create the model, a migration, controller and views for the new resource in a single operation. It will also create a full test suite following Rails best practises. I will be using examples from this generated code and would be supplementing it with additional examples where necessary.</p></div>\r
+<div class="admonitionblock">\r
+<table><tr>\r
+<td class="icon">\r
+<img src="./images/icons/note.png" alt="Note" />\r
+</td>\r
+<td class="content">For more information on Rails <em>scaffolding</em>, refer to <a href="../getting_started_with_rails.html">Getting Started with Rails</a></td>\r
+</tr></table>\r
+</div>\r
+<div class="para"><p>When you use <tt>script/generate scaffold</tt>, for a resource among other things it creates a test stub in the <tt>test/unit</tt> folder:</p></div>\r
+<div class="listingblock">\r
+<div class="content">\r
+<pre><tt>$ script/generate scaffold post title:string body:text\r
+...\r
+create  app/models/post.rb\r
+create  test/unit/post_test.rb\r
+create  test/fixtures/posts.yml\r
+...</tt></pre>\r
+</div></div>\r
+<div class="para"><p>The default test stub in <tt>test/unit/post_test.rb</tt> looks like this:</p></div>\r
+<div class="listingblock">\r
+<div class="content"><!-- Generator: GNU source-highlight 2.9\r
+by Lorenzo Bettini\r
+http://www.lorenzobettini.it\r
+http://www.gnu.org/software/src-highlite -->\r
+<pre><tt><span style="font-weight: bold"><span style="color: #000080">require</span></span> <span style="color: #FF0000">'test_helper'</span>\r
+\r
+<span style="font-weight: bold"><span style="color: #0000FF">class</span></span> PostTest <span style="color: #990000">&lt;</span> ActiveSupport<span style="color: #990000">::</span>TestCase\r
+  <span style="font-style: italic"><span style="color: #9A1900"># Replace this with your real tests.</span></span>\r
+  <span style="font-weight: bold"><span style="color: #0000FF">def</span></span> test_truth\r
+    assert <span style="font-weight: bold"><span style="color: #0000FF">true</span></span>\r
+  <span style="font-weight: bold"><span style="color: #0000FF">end</span></span>\r
+<span style="font-weight: bold"><span style="color: #0000FF">end</span></span>\r
+</tt></pre></div></div>\r
+<div class="para"><p>A line by line examination of this file will help get you oriented to Rails testing code and terminology.</p></div>\r
+<div class="listingblock">\r
+<div class="content"><!-- Generator: GNU source-highlight 2.9\r
+by Lorenzo Bettini\r
+http://www.lorenzobettini.it\r
+http://www.gnu.org/software/src-highlite -->\r
+<pre><tt><span style="font-weight: bold"><span style="color: #000080">require</span></span> <span style="color: #FF0000">'test_helper'</span>\r
+</tt></pre></div></div>\r
+<div class="para"><p>As you know by now that <tt>test_helper.rb</tt> specifies the default configuration to run our tests. This is included with all the tests, so any methods added to this file are available to all your tests.</p></div>\r
+<div class="listingblock">\r
+<div class="content"><!-- Generator: GNU source-highlight 2.9\r
+by Lorenzo Bettini\r
+http://www.lorenzobettini.it\r
+http://www.gnu.org/software/src-highlite -->\r
+<pre><tt><span style="font-weight: bold"><span style="color: #0000FF">class</span></span> PostTest <span style="color: #990000">&lt;</span> ActiveSupport<span style="color: #990000">::</span>TestCase\r
+</tt></pre></div></div>\r
+<div class="para"><p>The <tt>PostTest</tt> class defines a <em>test case</em> because it inherits from <tt>ActiveSupport::TestCase</tt>. <tt>PostTest</tt> thus has all the methods available from <tt>ActiveSupport::TestCase</tt>. You'll see those methods a little later in this guide.</p></div>\r
+<div class="listingblock">\r
+<div class="content"><!-- Generator: GNU source-highlight 2.9\r
+by Lorenzo Bettini\r
+http://www.lorenzobettini.it\r
+http://www.gnu.org/software/src-highlite -->\r
+<pre><tt><span style="font-weight: bold"><span style="color: #0000FF">def</span></span> test_truth\r
+</tt></pre></div></div>\r
+<div class="para"><p>Any method defined within a test case that begins with <tt>test</tt> (case sensitive) is simply called a test. So, <tt>test_password</tt>, <tt>test_valid_password</tt> and <tt>testValidPassword</tt> all are legal test names and are run automatically when the test case is run.</p></div>\r
+<div class="listingblock">\r
+<div class="content"><!-- Generator: GNU source-highlight 2.9\r
+by Lorenzo Bettini\r
+http://www.lorenzobettini.it\r
+http://www.gnu.org/software/src-highlite -->\r
+<pre><tt>assert <span style="font-weight: bold"><span style="color: #0000FF">true</span></span>\r
+</tt></pre></div></div>\r
+<div class="para"><p>This line of code is called an <em>assertion</em>. An assertion is a line of code that evaluates an object (or expression) for expected results. For example, an assertion can check:</p></div>\r
+<div class="ilist"><ul>\r
+<li>\r
+<p>\r
+is this value = that value?\r
+</p>\r
+</li>\r
+<li>\r
+<p>\r
+is this object nil?\r
+</p>\r
+</li>\r
+<li>\r
+<p>\r
+does this line of code throw an exception?\r
+</p>\r
+</li>\r
+<li>\r
+<p>\r
+is the user's password greater than 5 characters?\r
+</p>\r
+</li>\r
+</ul></div>\r
+<div class="para"><p>Every test contains one or more assertions. Only when all the assertions are successful the test passes.</p></div>\r
+<h3 id="_preparing_you_application_for_testing">3.1. Preparing you Application for Testing</h3>\r
+<div class="para"><p>Before you can run your tests you need to ensure that the test database structure is current. For this you can use the following rake commands:</p></div>\r
+<div class="listingblock">\r
+<div class="content"><!-- Generator: GNU source-highlight 2.9\r
+by Lorenzo Bettini\r
+http://www.lorenzobettini.it\r
+http://www.gnu.org/software/src-highlite -->\r
+<pre><tt>$ rake db<span style="color: #990000">:</span>migrate\r
+<span style="color: #990000">...</span>\r
+$ rake db<span style="color: #990000">:</span><span style="font-weight: bold"><span style="color: #0000FF">test</span></span><span style="color: #990000">:</span>load\r
+</tt></pre></div></div>\r
+<div class="para"><p>Above <tt>rake db:migrate</tt> runs any pending migrations on the <em>developemnt</em> environment and updates <tt>db/schema.rb</tt>. <tt>rake db:test:load</tt> recreates the test database from the current db/schema.rb. On subsequent attempts it is a good to first run <tt>db:test:prepare</tt> as it first checks for pending migrations and warns you appropriately.</p></div>\r
+<div class="admonitionblock">\r
+<table><tr>\r
+<td class="icon">\r
+<img src="./images/icons/note.png" alt="Note" />\r
+</td>\r
+<td class="content"><tt>db:test:prepare</tt> will fail with an error if db/schema.rb doesn't exists.</td>\r
+</tr></table>\r
+</div>\r
+<h4 id="_rake_tasks_for_preparing_you_application_for_testing">3.1.1. Rake Tasks for Preparing you Application for Testing ==</h4>\r
+<div class="para"><p>--------------------------------`----------------------------------------------------\r
+Tasks                           Description</p></div>\r
+<div class="listingblock">\r
+<div class="content">\r
+<pre><tt>+rake db:test:clone+            Recreate the test database from the current environment's database schema\r
++rake db:test:clone_structure+  Recreate the test databases from the development structure\r
++rake db:test:load+             Recreate the test database from the current +schema.rb+\r
++rake db:test:prepare+          Check for pending migrations and load the test schema\r
++rake db:test:purge+            Empty the test database.</tt></pre>\r
+</div></div>\r
+<div class="admonitionblock">\r
+<table><tr>\r
+<td class="icon">\r
+<img src="./images/icons/tip.png" alt="Tip" />\r
+</td>\r
+<td class="content">You can see all these rake tasks and their descriptions by running <tt>rake &#8212;tasks &#8212;describe</tt></td>\r
+</tr></table>\r
+</div>\r
+<h3 id="_running_tests">3.2. Running Tests</h3>\r
+<div class="para"><p>Running a test is as simple as invoking the file containing the test cases through Ruby:</p></div>\r
+<div class="listingblock">\r
+<div class="content"><!-- Generator: GNU source-highlight 2.9\r
+by Lorenzo Bettini\r
+http://www.lorenzobettini.it\r
+http://www.gnu.org/software/src-highlite -->\r
+<pre><tt>$ cd <span style="font-weight: bold"><span style="color: #0000FF">test</span></span>\r
+$ ruby unit/post_test<span style="color: #990000">.</span>rb\r
+\r
+Loaded suite unit/post_test\r
+Started\r
+<span style="color: #990000">.</span>\r
+Finished <span style="font-weight: bold"><span style="color: #0000FF">in</span></span> <span style="color: #993399">0.023513</span> seconds<span style="color: #990000">.</span>\r
+\r
+<span style="color: #993399">1</span> tests<span style="color: #990000">,</span> <span style="color: #993399">1</span> assertions<span style="color: #990000">,</span> <span style="color: #993399">0</span> failures<span style="color: #990000">,</span> <span style="color: #993399">0</span> errors\r
+</tt></pre></div></div>\r
+<div class="para"><p>This will run all the test methods from the test case.</p></div>\r
+<div class="para"><p>You can also run a particular test method from the test case by using the <tt>-n</tt> switch with the <tt>test method name</tt>.</p></div>\r
+<div class="listingblock">\r
+<div class="content">\r
+<pre><tt>$ ruby unit/post_test.rb -n test_truth\r
+\r
+Loaded suite unit/post_test\r
+Started\r
+.\r
+Finished in 0.023513 seconds.\r
+\r
+1 tests, 1 assertions, 0 failures, 0 errors</tt></pre>\r
+</div></div>\r
+<div class="para"><p>The <tt>.</tt> (dot) above indicates a passing test. When a test fails you see an <tt>F</tt>; when a test throws an error you see an <tt>E</tt> in its place. The last line of the output is the summary.</p></div>\r
+<div class="para"><p>To see how a test failure is reported, you can add a failing test to the <tt>post_test.rb</tt> test case.</p></div>\r
+<div class="listingblock">\r
+<div class="content"><!-- Generator: GNU source-highlight 2.9\r
+by Lorenzo Bettini\r
+http://www.lorenzobettini.it\r
+http://www.gnu.org/software/src-highlite -->\r
+<pre><tt><span style="font-weight: bold"><span style="color: #0000FF">def</span></span> test_should_not_save_post_without_title\r
+  post <span style="color: #990000">=</span> Post<span style="color: #990000">.</span>new\r
+  assert <span style="color: #990000">!</span>post<span style="color: #990000">.</span>save\r
+<span style="font-weight: bold"><span style="color: #0000FF">end</span></span>\r
+</tt></pre></div></div>\r
+<div class="para"><p>Let us run this newly added test.</p></div>\r
+<div class="listingblock">\r
+<div class="content">\r
+<pre><tt>$ ruby unit/post_test.rb -n test_should_not_save_post_without_title\r
+Loaded suite unit/post_test\r
+Started\r
+F\r
+Finished in 0.197094 seconds.\r
+\r
+  1) Failure:\r
+test_should_not_save_post_without_title(PostTest)\r
+    [unit/post_test.rb:11:in `test_should_not_save_post_without_title'\r
+     /opt/local/lib/ruby/gems/1.8/gems/activesupport-2.1.1/lib/active_support/testing/setup_and_teardown.rb:33:in `__send__'\r
+     /opt/local/lib/ruby/gems/1.8/gems/activesupport-2.1.1/lib/active_support/testing/setup_and_teardown.rb:33:in `run']:\r
+&lt;false&gt; is not true.\r
+\r
+1 tests, 1 assertions, 1 failures, 0 errors</tt></pre>\r
+</div></div>\r
+<div class="para"><p>In the output, <tt>F</tt> denotes a failure. You can see the corresponding trace shown under <tt>1)</tt> along with the name of the failing test. The next few lines contain the stack trace followed by a message which mentions the actual value and the expected value by the assertion. The default assertion messages provide just enough information to help pinpoint the error. To make the assertion failure message more readable every assertion provides an optional message parameter, as shown here:</p></div>\r
+<div class="listingblock">\r
+<div class="content"><!-- Generator: GNU source-highlight 2.9\r
+by Lorenzo Bettini\r
+http://www.lorenzobettini.it\r
+http://www.gnu.org/software/src-highlite -->\r
+<pre><tt><span style="font-weight: bold"><span style="color: #0000FF">def</span></span> test_should_not_save_post_without_title\r
+  post <span style="color: #990000">=</span> Post<span style="color: #990000">.</span>new\r
+  assert <span style="color: #990000">!</span>post<span style="color: #990000">.</span>save<span style="color: #990000">,</span> <span style="color: #FF0000">"Saved the post without a title"</span>\r
+<span style="font-weight: bold"><span style="color: #0000FF">end</span></span>\r
+</tt></pre></div></div>\r
+<div class="para"><p>Running this test shows the friendlier assertion message:</p></div>\r
+<div class="listingblock">\r
+<div class="content">\r
+<pre><tt>$ ruby unit/post_test.rb -n test_should_not_save_post_without_title\r
+Loaded suite unit/post_test\r
+Started\r
+F\r
+Finished in 0.198093 seconds.\r
+\r
+  1) Failure:\r
+test_should_not_save_post_without_title(PostTest)\r
+    [unit/post_test.rb:11:in `test_should_not_save_post_without_title'\r
+     /opt/local/lib/ruby/gems/1.8/gems/activesupport-2.1.1/lib/active_support/testing/setup_and_teardown.rb:33:in `__send__'\r
+     /opt/local/lib/ruby/gems/1.8/gems/activesupport-2.1.1/lib/active_support/testing/setup_and_teardown.rb:33:in `run']:\r
+Saved the post without a title.\r
+&lt;false&gt; is not true.\r
+\r
+1 tests, 1 assertions, 1 failures, 0 errors</tt></pre>\r
+</div></div>\r
+<div class="para"><p>Now to get this test to pass we can add a model level validation for the <em>title</em> field.</p></div>\r
+<div class="listingblock">\r
+<div class="content"><!-- Generator: GNU source-highlight 2.9\r
+by Lorenzo Bettini\r
+http://www.lorenzobettini.it\r
+http://www.gnu.org/software/src-highlite -->\r
+<pre><tt><span style="font-weight: bold"><span style="color: #0000FF">class</span></span> Post <span style="color: #990000">&lt;</span> ActiveRecord<span style="color: #990000">::</span>Base\r
+  validates_presence_of <span style="color: #990000">:</span>title\r
+<span style="font-weight: bold"><span style="color: #0000FF">end</span></span>\r
+</tt></pre></div></div>\r
+<div class="para"><p>Now the test should pass. Let us verify by running the test again:</p></div>\r
+<div class="listingblock">\r
+<div class="content">\r
+<pre><tt>$ ruby unit/post_test.rb -n test_should_not_save_post_without_title\r
+Loaded suite unit/post_test\r
+Started\r
+.\r
+Finished in 0.193608 seconds.\r
+\r
+1 tests, 1 assertions, 0 failures, 0 errors</tt></pre>\r
+</div></div>\r
+<div class="para"><p>Now if you noticed we first wrote a test which fails for a desired functionality, then we wrote some code which adds the functionality and finally we ensured that our test passes. This approach to software development is referred to as <em>Test-Driven Development</em> (TDD).</p></div>\r
+<div class="admonitionblock">\r
+<table><tr>\r
+<td class="icon">\r
+<img src="./images/icons/tip.png" alt="Tip" />\r
+</td>\r
+<td class="content">Many Rails developers practice <em>Test-Driven Development</em> (TDD). This is an excellent way to build up a test suite that exercises every part of your application. TDD is beyond the scope of this guide, but one place to start is with <a href="http://andrzejonsoftware.blogspot.com/2007/05/15-tdd-steps-to-create-rails.html">15 TDD steps to create a Rails application</a>.</td>\r
+</tr></table>\r
+</div>\r
+<div class="para"><p>To see how an error gets reported, here's a test containing an error:</p></div>\r
+<div class="listingblock">\r
+<div class="content"><!-- Generator: GNU source-highlight 2.9\r
+by Lorenzo Bettini\r
+http://www.lorenzobettini.it\r
+http://www.gnu.org/software/src-highlite -->\r
+<pre><tt><span style="font-weight: bold"><span style="color: #0000FF">def</span></span> test_should_report_error\r
+  <span style="font-style: italic"><span style="color: #9A1900"># some_undefined_variable is not defined elsewhere in the test case</span></span>\r
+  some_undefined_variable\r
+  assert <span style="font-weight: bold"><span style="color: #0000FF">true</span></span>\r
+<span style="font-weight: bold"><span style="color: #0000FF">end</span></span>\r
+</tt></pre></div></div>\r
+<div class="para"><p>Now you can see even more output in the console from running the tests:</p></div>\r
+<div class="listingblock">\r
+<div class="content">\r
+<pre><tt>$ ruby unit/post_test.rb -n test_should_report_error\r
+Loaded suite unit/post_test\r
+Started\r
+E\r
+Finished in 0.195757 seconds.\r
+\r
+  1) Error:\r
+test_should_report_error(PostTest):\r
+NameError: undefined local variable or method `some_undefined_variable' for #&lt;PostTest:0x2cc9de8&gt;\r
+    /opt/local/lib/ruby/gems/1.8/gems/actionpack-2.1.1/lib/action_controller/test_process.rb:467:in `method_missing'\r
+    unit/post_test.rb:16:in `test_should_report_error'\r
+    /opt/local/lib/ruby/gems/1.8/gems/activesupport-2.1.1/lib/active_support/testing/setup_and_teardown.rb:33:in `__send__'\r
+    /opt/local/lib/ruby/gems/1.8/gems/activesupport-2.1.1/lib/active_support/testing/setup_and_teardown.rb:33:in `run'\r
+\r
+1 tests, 0 assertions, 0 failures, 1 errors</tt></pre>\r
+</div></div>\r
+<div class="para"><p>Notice the <em>E</em> in the output. It denotes a test with error.</p></div>\r
+<div class="admonitionblock">\r
+<table><tr>\r
+<td class="icon">\r
+<img src="./images/icons/note.png" alt="Note" />\r
+</td>\r
+<td class="content">The execution of each test method stops as soon as any error or a assertion failure is encountered, and the test suite continues with the next method. All test methods are executed in alphabetical order.</td>\r
+</tr></table>\r
+</div>\r
+<h3 id="_what_to_include_in_your_unit_tests">3.3. What to Include in Your Unit Tests</h3>\r
+<div class="para"><p>Ideally you would like to include a test for everything which could possibly break. It's a good practice to have at least one test for each of your validations and at least one test for every method in your model.</p></div>\r
+<h3 id="_assertions_available">3.4. Assertions Available</h3>\r
+<div class="para"><p>By now you've caught a glimpse of some of the assertions that are available. Assertions are the worker bees of testing. They are the ones that actually perform the checks to ensure that things are going as planned.</p></div>\r
+<div class="para"><p>There are a bunch of different types of assertions you can use. Here's the complete list of assertions that ship with <tt>test/unit</tt>, the testing library used by Rails. The <tt>[msg]</tt> parameter is an optional string message you can specify to make your test failure messages clearer. It's not required.</p></div>\r
+<div class="tableblock">\r
+<table rules="all"\r
+frame="hsides"\r
+cellspacing="0" cellpadding="4">\r
+<col width="754" />\r
+<col width="834" />\r
+<thead>\r
+  <tr>\r
+    <th align="left">\r
+    Assertion\r
+    </th>\r
+    <th align="left">\r
+    Purpose\r
+    </th>\r
+  </tr>\r
+</thead>\r
+<tbody valign="top">\r
+  <tr>\r
+    <td align="left">\r
+    <tt>assert( boolean, [msg] )</tt>\r
+    </td>\r
+    <td align="left">\r
+    Ensures that the object/expression is true.\r
+    </td>\r
+  </tr>\r
+  <tr>\r
+    <td align="left">\r
+    <tt>assert_equal( obj1, obj2, [msg] )</tt>\r
+    </td>\r
+    <td align="left">\r
+    Ensures that <tt>obj1 == obj2</tt> is true.\r
+    </td>\r
+  </tr>\r
+  <tr>\r
+    <td align="left">\r
+    <tt>assert_not_equal( obj1, obj2, [msg] )</tt>\r
+    </td>\r
+    <td align="left">\r
+    Ensures that <tt>obj1 == obj2</tt> is false.\r
+    </td>\r
+  </tr>\r
+  <tr>\r
+    <td align="left">\r
+    <tt>assert_same( obj1, obj2, [msg] )</tt>\r
+    </td>\r
+    <td align="left">\r
+    Ensures that <tt>obj1.equal?(obj2)</tt> is true.\r
+    </td>\r
+  </tr>\r
+  <tr>\r
+    <td align="left">\r
+    <tt>assert_not_same( obj1, obj2, [msg] )</tt>\r
+    </td>\r
+    <td align="left">\r
+    Ensures that <tt>obj1.equal?(obj2)</tt> is false.\r
+    </td>\r
+  </tr>\r
+  <tr>\r
+    <td align="left">\r
+    <tt>assert_nil( obj, [msg] )</tt>\r
+    </td>\r
+    <td align="left">\r
+    Ensures that <tt>obj.nil?</tt> is true.\r
+    </td>\r
+  </tr>\r
+  <tr>\r
+    <td align="left">\r
+    <tt>assert_not_nil( obj, [msg] )</tt>\r
+    </td>\r
+    <td align="left">\r
+    Ensures that <tt>obj.nil?</tt> is false.\r
+    </td>\r
+  </tr>\r
+  <tr>\r
+    <td align="left">\r
+    <tt>assert_match( regexp, string, [msg] )</tt>\r
+    </td>\r
+    <td align="left">\r
+    Ensures that a string matches the regular expression.\r
+    </td>\r
+  </tr>\r
+  <tr>\r
+    <td align="left">\r
+    <tt>assert_no_match( regexp, string, [msg] )</tt>\r
+    </td>\r
+    <td align="left">\r
+    Ensures that a string doesn't matches the regular expression.\r
+    </td>\r
+  </tr>\r
+  <tr>\r
+    <td align="left">\r
+    <tt>assert_in_delta( expecting, actual, delta, [msg] )</tt>\r
+    </td>\r
+    <td align="left">\r
+    Ensures that the numbers <tt>expecting</tt> and <tt>actual</tt> are within <tt>delta</tt> of each other.\r
+    </td>\r
+  </tr>\r
+  <tr>\r
+    <td align="left">\r
+    <tt>assert_throws( symbol, [msg] ) { block }</tt>\r
+    </td>\r
+    <td align="left">\r
+    Ensures that the given block throws the symbol.\r
+    </td>\r
+  </tr>\r
+  <tr>\r
+    <td align="left">\r
+    <tt>assert_raises( exception1, exception2, &#8230; ) { block }</tt>\r
+    </td>\r
+    <td align="left">\r
+    Ensures that the given block raises one of the given exceptions.\r
+    </td>\r
+  </tr>\r
+  <tr>\r
+    <td align="left">\r
+    <tt>assert_nothing_raised( exception1, exception2, &#8230; ) { block }</tt>\r
+    </td>\r
+    <td align="left">\r
+    Ensures that the given block doesn't raise one of the given exceptions.\r
+    </td>\r
+  </tr>\r
+  <tr>\r
+    <td align="left">\r
+    <tt>assert_instance_of( class, obj, [msg] )</tt>\r
+    </td>\r
+    <td align="left">\r
+    Ensures that <tt>obj</tt> is of the <tt>class</tt> type.\r
+    </td>\r
+  </tr>\r
+  <tr>\r
+    <td align="left">\r
+    <tt>assert_kind_of( class, obj, [msg] )</tt>\r
+    </td>\r
+    <td align="left">\r
+    Ensures that <tt>obj</tt> is or descends from <tt>class</tt>.\r
+    </td>\r
+  </tr>\r
+  <tr>\r
+    <td align="left">\r
+    <tt>assert_respond_to( obj, symbol, [msg] )</tt>\r
+    </td>\r
+    <td align="left">\r
+    Ensures that <tt>obj</tt> has a method called <tt>symbol</tt>.\r
+    </td>\r
+  </tr>\r
+  <tr>\r
+    <td align="left">\r
+    <tt>assert_operator( obj1, operator, obj2, [msg] )</tt>\r
+    </td>\r
+    <td align="left">\r
+    Ensures that <tt>obj1.operator(obj2)</tt> is true.\r
+    </td>\r
+  </tr>\r
+  <tr>\r
+    <td align="left">\r
+    <tt>assert_send( array, [msg] )</tt>\r
+    </td>\r
+    <td align="left">\r
+    Ensures that executing the method listed in <tt>array[1]</tt> on the object in <tt>array[0]</tt> with the parameters of <tt>array[2 and up]</tt> is true. This one is weird eh?\r
+    </td>\r
+  </tr>\r
+  <tr>\r
+    <td align="left">\r
+    <tt>flunk( [msg] )</tt>\r
+    </td>\r
+    <td align="left">\r
+    Ensures failure. This is useful to explicitly mark a test that isn't finished yet.\r
+    </td>\r
+  </tr>\r
+</tbody>\r
+</table>\r
+</div>\r
+<div class="para"><p>Because of the modular nature of the testing framework, it is possible to create your own assertions. In fact, that's exactly what Rails does. It includes some specialized assertions to make your life easier.</p></div>\r
+<div class="admonitionblock">\r
+<table><tr>\r
+<td class="icon">\r
+<img src="./images/icons/note.png" alt="Note" />\r
+</td>\r
+<td class="content">Creating your own assertions is an advanced topic that we won't cover in this tutorial.</td>\r
+</tr></table>\r
+</div>\r
+<h3 id="_rails_specific_assertions">3.5. Rails Specific Assertions</h3>\r
+<div class="para"><p>Rails adds some custom assertions of its own to the <tt>test/unit</tt> framework:</p></div>\r
+<div class="tableblock">\r
+<table rules="all"\r
+frame="hsides"\r
+cellspacing="0" cellpadding="4">\r
+<col width="948" />\r
+<col width="640" />\r
+<thead>\r
+  <tr>\r
+    <th align="left">\r
+    Assertion\r
+    </th>\r
+    <th align="left">\r
+    Purpose\r
+    </th>\r
+  </tr>\r
+</thead>\r
+<tbody valign="top">\r
+  <tr>\r
+    <td align="left">\r
+    <tt>assert_valid(record)</tt>\r
+    </td>\r
+    <td align="left">\r
+    Ensures that the passed record is valid by Active Record standards and returns any error messages if it is not.\r
+    </td>\r
+  </tr>\r
+  <tr>\r
+    <td align="left">\r
+    <tt>assert_difference(expressions, difference = 1, message = nil) {|| &#8230;}</tt>\r
+    </td>\r
+    <td align="left">\r
+    Test numeric difference between the return value of an expression as a result of what is evaluated in the yielded block.\r
+    </td>\r
+  </tr>\r
+  <tr>\r
+    <td align="left">\r
+    <tt>assert_no_difference(expressions, message = nil, &amp;block)</tt>\r
+    </td>\r
+    <td align="left">\r
+    Asserts that the numeric result of evaluating an expression is not changed before and after invoking the passed in block.\r
+    </td>\r
+  </tr>\r
+  <tr>\r
+    <td align="left">\r
+    <tt>assert_recognizes(expected_options, path, extras={}, message=nil)</tt>\r
+    </td>\r
+    <td align="left">\r
+    Asserts that the routing of the given path was handled correctly and that the parsed options (given in the expected_options hash) match path. Basically, it asserts that Rails recognizes the route given by expected_options.\r
+    </td>\r
+  </tr>\r
+  <tr>\r
+    <td align="left">\r
+    <tt>assert_generates(expected_path, options, defaults={}, extras = {}, message=nil)</tt>\r
+    </td>\r
+    <td align="left">\r
+    Asserts that the provided options can be used to generate the provided path. This is the inverse of assert_recognizes. The extras parameter is used to tell the request the names and values of additional request parameters that would be in a query string. The message parameter allows you to specify a custom error message for assertion failures.\r
+    </td>\r
+  </tr>\r
+  <tr>\r
+    <td align="left">\r
+    <tt>assert_response(type, message = nil)</tt>\r
+    </td>\r
+    <td align="left">\r
+    Asserts that the response comes with a specific status code. You can specify <tt>:success</tt> to indicate 200,  <tt>:redirect</tt> to indicate 300-399, <tt>:missing</tt> to indicate 404, or <tt>:error</tt> to match the 500-599 range\r
+    </td>\r
+  </tr>\r
+  <tr>\r
+    <td align="left">\r
+    <tt>assert_redirected_to(options = {}, message=nil)</tt>\r
+    </td>\r
+    <td align="left">\r
+    Assert that the redirection options passed in match those of the redirect called in the latest action. This match can be partial, such that <tt>assert_redirected_to(:controller &#8658; "weblog")</tt> will also match the redirection of <tt>redirect_to(:controller &#8658; "weblog", :action &#8658; "show")</tt> and so on.\r
+    </td>\r
+  </tr>\r
+  <tr>\r
+    <td align="left">\r
+    <tt>assert_template(expected = nil, message=nil)</tt>\r
+    </td>\r
+    <td align="left">\r
+    Asserts that the request was rendered with the appropriate template file.\r
+    </td>\r
+  </tr>\r
+</tbody>\r
+</table>\r
+</div>\r
+<div class="para"><p>You'll see the usage of some of these assertions in the next chapter.</p></div>\r
+</div>\r
+<h2 id="_functional_tests_for_your_controllers">4. Functional Tests for Your Controllers</h2>\r
+<div class="sectionbody">\r
+<div class="para"><p>In Rails, testing the various actions of a single controller is called writing functional tests for that controller. Controllers handle the incoming web requests to your application and eventually respond with a rendered view.</p></div>\r
+<h3 id="_what_to_include_in_your_functional_tests">4.1. What to include in your Functional Tests</h3>\r
+<div class="para"><p>You should test for things such as:</p></div>\r
+<div class="ilist"><ul>\r
+<li>\r
+<p>\r
+was the web request successful?\r
+</p>\r
+</li>\r
+<li>\r
+<p>\r
+was the user redirected to the right page?\r
+</p>\r
+</li>\r
+<li>\r
+<p>\r
+was the user successfully authenticated?\r
+</p>\r
+</li>\r
+<li>\r
+<p>\r
+was the correct object stored in the response template?\r
+</p>\r
+</li>\r
+<li>\r
+<p>\r
+was the appropriate message displayed to the user in the view\r
+</p>\r
+</li>\r
+</ul></div>\r
+<div class="para"><p>Now that we have used Rails scaffold generator for our <tt>Post</tt> resource, it has already created the controller code and functional tests. You can take look at the file <tt>posts_controller_test.rb</tt> in the <tt>test/functional</tt> directory.</p></div>\r
+<div class="para"><p>Let me take you through one such test, <tt>test_should_get_index</tt> from the file <tt>posts_controller_test.rb</tt>.</p></div>\r
+<div class="listingblock">\r
+<div class="content"><!-- Generator: GNU source-highlight 2.9\r
+by Lorenzo Bettini\r
+http://www.lorenzobettini.it\r
+http://www.gnu.org/software/src-highlite -->\r
+<pre><tt><span style="font-weight: bold"><span style="color: #0000FF">def</span></span> test_should_get_index\r
+  get <span style="color: #990000">:</span>index\r
+  assert_response <span style="color: #990000">:</span>success\r
+  assert_not_nil assigns<span style="color: #990000">(:</span>posts<span style="color: #990000">)</span>\r
+<span style="font-weight: bold"><span style="color: #0000FF">end</span></span>\r
+</tt></pre></div></div>\r
+<div class="para"><p>In the <tt>test_should_get_index</tt> test, Rails simulates a request on the action called index, making sure the request was successful and also ensuring that it assigns a valid <tt>posts</tt> instance variable.</p></div>\r
+<div class="para"><p>The <tt>get</tt> method kicks off the web request and populates the results into the response. It accepts 4 arguments:</p></div>\r
+<div class="ilist"><ul>\r
+<li>\r
+<p>\r
+The action of the controller you are requesting. This can be in the form of a string or a symbol.\r
+</p>\r
+</li>\r
+<li>\r
+<p>\r
+An optional hash of request parameters to pass into the action (eg. query string parameters or post variables).\r
+</p>\r
+</li>\r
+<li>\r
+<p>\r
+An optional hash of session variables to pass along with the request.\r
+</p>\r
+</li>\r
+<li>\r
+<p>\r
+An optional hash of flash values.\r
+</p>\r
+</li>\r
+</ul></div>\r
+<div class="para"><p>Example: Calling the <tt>:show</tt> action, passing an <tt>id</tt> of 12 as the <tt>params</tt> and setting a <tt>user_id</tt> of 5 in the session:</p></div>\r
+<div class="listingblock">\r
+<div class="content"><!-- Generator: GNU source-highlight 2.9\r
+by Lorenzo Bettini\r
+http://www.lorenzobettini.it\r
+http://www.gnu.org/software/src-highlite -->\r
+<pre><tt>get<span style="color: #990000">(:</span>show<span style="color: #990000">,</span> <span style="color: #FF0000">{</span><span style="color: #FF0000">'id'</span> <span style="color: #990000">=&gt;</span> <span style="color: #FF0000">"12"</span><span style="color: #FF0000">}</span><span style="color: #990000">,</span> <span style="color: #FF0000">{</span><span style="color: #FF0000">'user_id'</span> <span style="color: #990000">=&gt;</span> <span style="color: #993399">5</span><span style="color: #FF0000">}</span><span style="color: #990000">)</span>\r
+</tt></pre></div></div>\r
+<div class="para"><p>Another example: Calling the <tt>:view</tt> action, passing an <tt>id</tt> of 12 as the <tt>params</tt>, this time with no session, but with a flash message.</p></div>\r
+<div class="listingblock">\r
+<div class="content"><!-- Generator: GNU source-highlight 2.9\r
+by Lorenzo Bettini\r
+http://www.lorenzobettini.it\r
+http://www.gnu.org/software/src-highlite -->\r
+<pre><tt>get<span style="color: #990000">(:</span>view<span style="color: #990000">,</span> <span style="color: #FF0000">{</span><span style="color: #FF0000">'id'</span> <span style="color: #990000">=&gt;</span> <span style="color: #FF0000">'12'</span><span style="color: #FF0000">}</span><span style="color: #990000">,</span> <span style="font-weight: bold"><span style="color: #0000FF">nil</span></span><span style="color: #990000">,</span> <span style="color: #FF0000">{</span><span style="color: #FF0000">'message'</span> <span style="color: #990000">=&gt;</span> <span style="color: #FF0000">'booya!'</span><span style="color: #FF0000">}</span><span style="color: #990000">)</span>\r
+</tt></pre></div></div>\r
+<div class="admonitionblock">\r
+<table><tr>\r
+<td class="icon">\r
+<img src="./images/icons/note.png" alt="Note" />\r
+</td>\r
+<td class="content">If you try running <tt>test_should_create_post</tt> test from <tt>posts_controller_test.rb</tt> it will fail on account of the newly added model level validation and rightly so.</td>\r
+</tr></table>\r
+</div>\r
+<div class="para"><p>Let us modify <tt>test_should_create_post</tt> test in <tt>posts_controller_test.rb</tt> so that all our test pass:</p></div>\r
+<div class="listingblock">\r
+<div class="content"><!-- Generator: GNU source-highlight 2.9\r
+by Lorenzo Bettini\r
+http://www.lorenzobettini.it\r
+http://www.gnu.org/software/src-highlite -->\r
+<pre><tt><span style="font-weight: bold"><span style="color: #0000FF">def</span></span> test_should_create_post\r
+  assert_difference<span style="color: #990000">(</span><span style="color: #FF0000">'Post.count'</span><span style="color: #990000">)</span> <span style="font-weight: bold"><span style="color: #0000FF">do</span></span>\r
+    post <span style="color: #990000">:</span>create<span style="color: #990000">,</span> <span style="color: #990000">:</span>post <span style="color: #990000">=&gt;</span> <span style="color: #FF0000">{</span> <span style="color: #990000">:</span>title <span style="color: #990000">=&gt;</span> <span style="color: #FF0000">'Some title'</span><span style="color: #FF0000">}</span>\r
+  <span style="font-weight: bold"><span style="color: #0000FF">end</span></span>\r
+\r
+  assert_redirected_to post_path<span style="color: #990000">(</span>assigns<span style="color: #990000">(:</span>post<span style="color: #990000">))</span>\r
+<span style="font-weight: bold"><span style="color: #0000FF">end</span></span>\r
+</tt></pre></div></div>\r
+<div class="para"><p>Now you can try running all the tests and they should pass.</p></div>\r
+<h3 id="_available_request_types_for_functional_tests">4.2. Available Request Types for Functional Tests</h3>\r
+<div class="para"><p>If you're familiar with the HTTP protocol, you'll know that <tt>get</tt> is a type of request. There are 5 request types supported in Rails functional tests:</p></div>\r
+<div class="ilist"><ul>\r
+<li>\r
+<p>\r
+<tt>get</tt>\r
+</p>\r
+</li>\r
+<li>\r
+<p>\r
+<tt>post</tt>\r
+</p>\r
+</li>\r
+<li>\r
+<p>\r
+<tt>put</tt>\r
+</p>\r
+</li>\r
+<li>\r
+<p>\r
+<tt>head</tt>\r
+</p>\r
+</li>\r
+<li>\r
+<p>\r
+<tt>delete</tt>\r
+</p>\r
+</li>\r
+</ul></div>\r
+<div class="para"><p>All of request types are methods that you can use, however, you'll probably end up using the first two more often than the others.</p></div>\r
+<h3 id="_the_4_hashes_of_the_apocalypse">4.3. The 4 Hashes of the Apocalypse</h3>\r
+<div class="para"><p>After a request has been made by using one of the 5 methods (<tt>get</tt>, <tt>post</tt>, etc.) and processed, you will have 4 Hash objects ready for use:</p></div>\r
+<div class="ilist"><ul>\r
+<li>\r
+<p>\r
+<tt>assigns</tt> - Any objects that are stored as instance variables in actions for use in views.\r
+</p>\r
+</li>\r
+<li>\r
+<p>\r
+<tt>cookies</tt> - Any cookies that are set.\r
+</p>\r
+</li>\r
+<li>\r
+<p>\r
+<tt>flash</tt> - Any objects living in the flash.\r
+</p>\r
+</li>\r
+<li>\r
+<p>\r
+<tt>session</tt> - Any object living in session variables.\r
+</p>\r
+</li>\r
+</ul></div>\r
+<div class="para"><p>As is the case with normal Hash objects, you can access the values by referencing the keys by string. You can also reference them by symbol name, except for <tt>assigns</tt>. For example:</p></div>\r
+<div class="listingblock">\r
+<div class="content"><!-- Generator: GNU source-highlight 2.9\r
+by Lorenzo Bettini\r
+http://www.lorenzobettini.it\r
+http://www.gnu.org/software/src-highlite -->\r
+<pre><tt>  flash<span style="color: #990000">[</span><span style="color: #FF0000">"gordon"</span><span style="color: #990000">]</span>               flash<span style="color: #990000">[:</span>gordon<span style="color: #990000">]</span>\r
+  session<span style="color: #990000">[</span><span style="color: #FF0000">"shmession"</span><span style="color: #990000">]</span>          session<span style="color: #990000">[:</span>shmession<span style="color: #990000">]</span>\r
+  cookies<span style="color: #990000">[</span><span style="color: #FF0000">"are_good_for_u"</span><span style="color: #990000">]</span>     cookies<span style="color: #990000">[:</span>are_good_for_u<span style="color: #990000">]</span>\r
+\r
+<span style="font-style: italic"><span style="color: #9A1900"># Because you can't use assigns[:something] for historical reasons:</span></span>\r
+  assigns<span style="color: #990000">[</span><span style="color: #FF0000">"something"</span><span style="color: #990000">]</span>          assigns<span style="color: #990000">(:</span>something<span style="color: #990000">)</span>\r
+</tt></pre></div></div>\r
+<h3 id="_instance_variables_available">4.4. Instance Variables Available</h3>\r
+<div class="para"><p>You also have access to three instance variables in your functional tests:</p></div>\r
+<div class="ilist"><ul>\r
+<li>\r
+<p>\r
+<tt>@controller</tt> - The controller processing the request\r
+</p>\r
+</li>\r
+<li>\r
+<p>\r
+<tt>@request</tt> - The request\r
+</p>\r
+</li>\r
+<li>\r
+<p>\r
+<tt>@response</tt> - The response\r
+</p>\r
+</li>\r
+</ul></div>\r
+<h3 id="_a_fuller_functional_test_example">4.5. A Fuller Functional Test Example</h3>\r
+<div class="para"><p>Here's another example that uses <tt>flash</tt>, <tt>assert_redirected_to</tt>, and <tt>assert_difference</tt>:</p></div>\r
+<div class="listingblock">\r
+<div class="content"><!-- Generator: GNU source-highlight 2.9\r
+by Lorenzo Bettini\r
+http://www.lorenzobettini.it\r
+http://www.gnu.org/software/src-highlite -->\r
+<pre><tt><span style="font-weight: bold"><span style="color: #0000FF">def</span></span> test_should_create_post\r
+  assert_difference<span style="color: #990000">(</span><span style="color: #FF0000">'Post.count'</span><span style="color: #990000">)</span> <span style="font-weight: bold"><span style="color: #0000FF">do</span></span>\r
+    post <span style="color: #990000">:</span>create<span style="color: #990000">,</span> <span style="color: #990000">:</span>post <span style="color: #990000">=&gt;</span> <span style="color: #FF0000">{</span> <span style="color: #990000">:</span>title <span style="color: #990000">=&gt;</span> <span style="color: #FF0000">'Hi'</span><span style="color: #990000">,</span> <span style="color: #990000">:</span>body <span style="color: #990000">=&gt;</span> <span style="color: #FF0000">'This is my first post.'</span><span style="color: #FF0000">}</span>\r
+  <span style="font-weight: bold"><span style="color: #0000FF">end</span></span>\r
+  assert_redirected_to post_path<span style="color: #990000">(</span>assigns<span style="color: #990000">(:</span>post<span style="color: #990000">))</span>\r
+  assert_equal <span style="color: #FF0000">'Post was successfully created.'</span><span style="color: #990000">,</span> flash<span style="color: #990000">[:</span>notice<span style="color: #990000">]</span>\r
+<span style="font-weight: bold"><span style="color: #0000FF">end</span></span>\r
+</tt></pre></div></div>\r
+<h3 id="_testing_views">4.6. Testing Views</h3>\r
+<div class="para"><p>Testing the response to your request by asserting the presence of key HTML elements and their content is a useful way to test the views of your application. The <tt>assert_select</tt> assertion allows you to do this by using a simple yet powerful syntax.</p></div>\r
+<div class="admonitionblock">\r
+<table><tr>\r
+<td class="icon">\r
+<img src="./images/icons/note.png" alt="Note" />\r
+</td>\r
+<td class="content">You may find references to <tt>assert_tag</tt> in other documentation, but this is now deprecated in favor of <tt>assert_select</tt>.</td>\r
+</tr></table>\r
+</div>\r
+<div class="para"><p>There are two forms of <tt>assert_select</tt>:</p></div>\r
+<div class="para"><p><tt>assert_select(selector, [equality], [message])`</tt> ensures that the equality condition is met on the selected elements through the selector. The selector may be a CSS selector expression (String), an expression with substitution values, or an <tt>HTML::Selector</tt> object.</p></div>\r
+<div class="para"><p><tt>assert_select(element, selector, [equality], [message])</tt> ensures that the equality condition is met on all the selected elements through the selector starting from the <em>element</em> (instance of <tt>HTML::Node</tt>) and its descendants.</p></div>\r
+<div class="para"><p>For example, you could verify the contents on the title element in your response with:</p></div>\r
+<div class="listingblock">\r
+<div class="content"><!-- Generator: GNU source-highlight 2.9\r
+by Lorenzo Bettini\r
+http://www.lorenzobettini.it\r
+http://www.gnu.org/software/src-highlite -->\r
+<pre><tt>assert_select <span style="color: #FF0000">'title'</span><span style="color: #990000">,</span> <span style="color: #FF0000">"Welcome to Rails Testing Guide"</span>\r
+</tt></pre></div></div>\r
+<div class="para"><p>You can also use nested <tt>assert_select</tt> blocks. In this case the inner <tt>assert_select</tt> will run the assertion on each element selected by the outer <tt>assert_select</tt> block:</p></div>\r
+<div class="listingblock">\r
+<div class="content"><!-- Generator: GNU source-highlight 2.9\r
+by Lorenzo Bettini\r
+http://www.lorenzobettini.it\r
+http://www.gnu.org/software/src-highlite -->\r
+<pre><tt>assert_select <span style="color: #FF0000">'ul.navigation'</span> <span style="font-weight: bold"><span style="color: #0000FF">do</span></span>\r
+  assert_select <span style="color: #FF0000">'li.menu_item'</span>\r
+<span style="font-weight: bold"><span style="color: #0000FF">end</span></span>\r
+</tt></pre></div></div>\r
+<div class="para"><p>The <tt>assert_select</tt> assertion is quite powerful. For more advanced usage, refer to its <a href="http://api.rubyonrails.com/classes/ActionController/Assertions/SelectorAssertions.html#M000749">documentation</a>.</p></div>\r
+<h4 id="_additional_view_based_assertions">4.6.1. Additional View-based Assertions</h4>\r
+<div class="para"><p>There are more assertions that are primarily used in testing views:</p></div>\r
+<div class="tableblock">\r
+<table rules="all"\r
+frame="hsides"\r
+cellspacing="0" cellpadding="4">\r
+<col width="948" />\r
+<col width="640" />\r
+<thead>\r
+  <tr>\r
+    <th align="left">\r
+    Assertion\r
+    </th>\r
+    <th align="left">\r
+    Purpose\r
+    </th>\r
+  </tr>\r
+</thead>\r
+<tbody valign="top">\r
+  <tr>\r
+    <td align="left">\r
+    <tt>assert_select_email</tt>\r
+    </td>\r
+    <td align="left">\r
+    Allows you to make assertions on the body of an e-mail.\r
+    </td>\r
+  </tr>\r
+  <tr>\r
+    <td align="left">\r
+    <tt>assert_select_rjs</tt>\r
+    </td>\r
+    <td align="left">\r
+    Allows you to make assertions on RJS response. <tt>assert_select_rjs</tt> has variants which allow you to narrow down on the updated element or even a particular operation on an element.\r
+    </td>\r
+  </tr>\r
+  <tr>\r
+    <td align="left">\r
+    <tt>assert_select_encoded</tt>\r
+    </td>\r
+    <td align="left">\r
+    Allows you to make assertions on encoded HTML. It does this by un-encoding the contents of each element and then calling the block with all the un-encoded elements.\r
+    </td>\r
+  </tr>\r
+  <tr>\r
+    <td align="left">\r
+    <tt>css_select(selector)</tt>  or <tt>css_select(element, selector)</tt>\r
+    </td>\r
+    <td align="left">\r
+    Returns an array of all the elements selected by the <em>selector</em>. In the second variant it first matches the base <em>element</em> and tries to match the <em>selector</em> expression on any of its children. If there are no matches both variants return an empty array.\r
+    </td>\r
+  </tr>\r
+</tbody>\r
+</table>\r
+</div>\r
+<div class="para"><p>Here's an example of using <tt>assert_select_email</tt>:</p></div>\r
+<div class="listingblock">\r
+<div class="content"><!-- Generator: GNU source-highlight 2.9\r
+by Lorenzo Bettini\r
+http://www.lorenzobettini.it\r
+http://www.gnu.org/software/src-highlite -->\r
+<pre><tt>assert_select_email <span style="font-weight: bold"><span style="color: #0000FF">do</span></span>\r
+  assert_select <span style="color: #FF0000">'small'</span><span style="color: #990000">,</span> <span style="color: #FF0000">'Please click the "Unsubscribe" link if you want to opt-out.'</span>\r
+<span style="font-weight: bold"><span style="color: #0000FF">end</span></span>\r
+</tt></pre></div></div>\r
+</div>\r
+<h2 id="_integration_testing">5. Integration Testing</h2>\r
+<div class="sectionbody">\r
+<div class="para"><p>Integration tests are used to test the interaction among any number of controllers. They are generally used to test important work flows within your application.</p></div>\r
+<div class="para"><p>Unlike Unit and Functional tests, integration tests have to be explicitly created under the <em>test/integration</em> folder within your application. Rails provides a generator to create an integration test skeleton for you.</p></div>\r
+<div class="listingblock">\r
+<div class="content"><!-- Generator: GNU source-highlight 2.9\r
+by Lorenzo Bettini\r
+http://www.lorenzobettini.it\r
+http://www.gnu.org/software/src-highlite -->\r
+<pre><tt>$ script/generate integration_test user_flows\r
+      exists  test/integration<span style="color: #990000">/</span>\r
+      create  test/integration/user_flows_test<span style="color: #990000">.</span>rb\r
+</tt></pre></div></div>\r
+<div class="para"><p>Here's what a freshly-generated integration test looks like:</p></div>\r
+<div class="listingblock">\r
+<div class="content"><!-- Generator: GNU source-highlight 2.9\r
+by Lorenzo Bettini\r
+http://www.lorenzobettini.it\r
+http://www.gnu.org/software/src-highlite -->\r
+<pre><tt><span style="font-weight: bold"><span style="color: #000080">require</span></span> <span style="color: #FF0000">'test_helper'</span>\r
+\r
+<span style="font-weight: bold"><span style="color: #0000FF">class</span></span> UserFlowsTest <span style="color: #990000">&lt;</span> ActionController<span style="color: #990000">::</span>IntegrationTest\r
+  <span style="font-style: italic"><span style="color: #9A1900"># fixtures :your, :models</span></span>\r
+\r
+  <span style="font-style: italic"><span style="color: #9A1900"># Replace this with your real tests.</span></span>\r
+  <span style="font-weight: bold"><span style="color: #0000FF">def</span></span> test_truth\r
+    assert <span style="font-weight: bold"><span style="color: #0000FF">true</span></span>\r
+  <span style="font-weight: bold"><span style="color: #0000FF">end</span></span>\r
+<span style="font-weight: bold"><span style="color: #0000FF">end</span></span>\r
+</tt></pre></div></div>\r
+<div class="para"><p>Integration tests inherit from <tt>ActionController::IntegrationTest</tt>. This makes available some additional helpers to use in your integration tests. Also you need to explicitly include the fixtures to be made available to the test.</p></div>\r
+<h3 id="_helpers_available_for_integration_tests">5.1. Helpers Available for Integration tests</h3>\r
+<div class="para"><p>In addition to the standard testing helpers, there are some additional helpers available to integration tests:</p></div>\r
+<div class="tableblock">\r
+<table rules="all"\r
+frame="hsides"\r
+cellspacing="0" cellpadding="4">\r
+<col width="948" />\r
+<col width="640" />\r
+<thead>\r
+  <tr>\r
+    <th align="left">\r
+    Helper\r
+    </th>\r
+    <th align="left">\r
+    Purpose\r
+    </th>\r
+  </tr>\r
+</thead>\r
+<tbody valign="top">\r
+  <tr>\r
+    <td align="left">\r
+    <tt>https?</tt>\r
+    </td>\r
+    <td align="left">\r
+    Returns <tt>true</tt> if the session is mimicking a secure HTTPS request.\r
+    </td>\r
+  </tr>\r
+  <tr>\r
+    <td align="left">\r
+    <tt>https!</tt>\r
+    </td>\r
+    <td align="left">\r
+    Allows you to mimic a secure HTTPS request.\r
+    </td>\r
+  </tr>\r
+  <tr>\r
+    <td align="left">\r
+    <tt>host!</tt>\r
+    </td>\r
+    <td align="left">\r
+    Allows you to set the host name to use in the next request.\r
+    </td>\r
+  </tr>\r
+  <tr>\r
+    <td align="left">\r
+    <tt>redirect?</tt>\r
+    </td>\r
+    <td align="left">\r
+    Returns <tt>true</tt> if the last request was a redirect.\r
+    </td>\r
+  </tr>\r
+  <tr>\r
+    <td align="left">\r
+    <tt>follow_redirect!</tt>\r
+    </td>\r
+    <td align="left">\r
+    Follows a single redirect response.\r
+    </td>\r
+  </tr>\r
+  <tr>\r
+    <td align="left">\r
+    <tt>request_via_redirect(http_method, path, [parameters], [headers])</tt>\r
+    </td>\r
+    <td align="left">\r
+    Allows you to make an HTTP request and follow any subsequent redirects.\r
+    </td>\r
+  </tr>\r
+  <tr>\r
+    <td align="left">\r
+    <tt>post_via_redirect(path, [parameters], [headers])</tt>\r
+    </td>\r
+    <td align="left">\r
+    Allows you to make an HTTP POST request and follow any subsequent redirects.\r
+    </td>\r
+  </tr>\r
+  <tr>\r
+    <td align="left">\r
+    <tt>get_via_redirect(path, [parameters], [headers])</tt>\r
+    </td>\r
+    <td align="left">\r
+    Allows you to make an HTTP GET request and follow any subsequent redirects.\r
+    </td>\r
+  </tr>\r
+  <tr>\r
+    <td align="left">\r
+    <tt>put_via_redirect(path, [parameters], [headers])</tt>\r
+    </td>\r
+    <td align="left">\r
+    Allows you to make an HTTP PUT request and follow any subsequent redirects.\r
+    </td>\r
+  </tr>\r
+  <tr>\r
+    <td align="left">\r
+    <tt>delete_via_redirect(path, [parameters], [headers])</tt>\r
+    </td>\r
+    <td align="left">\r
+    Allows you to make an HTTP DELETE request and follow any subsequent redirects.\r
+    </td>\r
+  </tr>\r
+  <tr>\r
+    <td align="left">\r
+    <tt>open_session</tt>\r
+    </td>\r
+    <td align="left">\r
+    Opens a new session instance.\r
+    </td>\r
+  </tr>\r
+</tbody>\r
+</table>\r
+</div>\r
+<h3 id="_integration_testing_examples">5.2. Integration Testing Examples</h3>\r
+<div class="para"><p>A simple integration test that exercises multiple controllers:</p></div>\r
+<div class="listingblock">\r
+<div class="content"><!-- Generator: GNU source-highlight 2.9\r
+by Lorenzo Bettini\r
+http://www.lorenzobettini.it\r
+http://www.gnu.org/software/src-highlite -->\r
+<pre><tt><span style="font-weight: bold"><span style="color: #000080">require</span></span> <span style="color: #FF0000">'test_helper'</span>\r
+\r
+<span style="font-weight: bold"><span style="color: #0000FF">class</span></span> UserFlowsTest <span style="color: #990000">&lt;</span> ActionController<span style="color: #990000">::</span>IntegrationTest\r
+  fixtures <span style="color: #990000">:</span>users\r
+\r
+  <span style="font-weight: bold"><span style="color: #0000FF">def</span></span> test_login_and_browse_site\r
+    <span style="font-style: italic"><span style="color: #9A1900"># login via https</span></span>\r
+    https!\r
+    get <span style="color: #FF0000">"/login"</span>\r
+    assert_response <span style="color: #990000">:</span>success\r
+\r
+    post_via_redirect <span style="color: #FF0000">"/login"</span><span style="color: #990000">,</span> <span style="color: #990000">:</span>username <span style="color: #990000">=&gt;</span> users<span style="color: #990000">(:</span>avs<span style="color: #990000">).</span>username<span style="color: #990000">,</span> <span style="color: #990000">:</span>password <span style="color: #990000">=&gt;</span> users<span style="color: #990000">(:</span>avs<span style="color: #990000">).</span>password\r
+    assert_equal <span style="color: #FF0000">'/welcome'</span><span style="color: #990000">,</span> path\r
+    assert_equal <span style="color: #FF0000">'Welcome avs!'</span><span style="color: #990000">,</span> flash<span style="color: #990000">[:</span>notice<span style="color: #990000">]</span>\r
+\r
+    https!<span style="color: #990000">(</span><span style="font-weight: bold"><span style="color: #0000FF">false</span></span><span style="color: #990000">)</span>\r
+    get <span style="color: #FF0000">"/posts/all"</span>\r
+    assert_response <span style="color: #990000">:</span>success\r
+    assert assigns<span style="color: #990000">(:</span>products<span style="color: #990000">)</span>\r
+  <span style="font-weight: bold"><span style="color: #0000FF">end</span></span>\r
+<span style="font-weight: bold"><span style="color: #0000FF">end</span></span>\r
+</tt></pre></div></div>\r
+<div class="para"><p>As you can see the integration test involves multiple controllers and exercises the entire stack from database to dispatcher. In addition you can have multiple session instances open simultaneously in a test and extend those instances with assertion methods to create a very powerful testing DSL (domain-specific language) just for your application.</p></div>\r
+<div class="para"><p>Here's an example of multiple sessions and custom DSL in an integration test</p></div>\r
+<div class="listingblock">\r
+<div class="content"><!-- Generator: GNU source-highlight 2.9\r
+by Lorenzo Bettini\r
+http://www.lorenzobettini.it\r
+http://www.gnu.org/software/src-highlite -->\r
+<pre><tt><span style="font-weight: bold"><span style="color: #000080">require</span></span> <span style="color: #FF0000">'test_helper'</span>\r
+\r
+<span style="font-weight: bold"><span style="color: #0000FF">class</span></span> UserFlowsTest <span style="color: #990000">&lt;</span> ActionController<span style="color: #990000">::</span>IntegrationTest\r
+  fixtures <span style="color: #990000">:</span>users\r
+\r
+  <span style="font-weight: bold"><span style="color: #0000FF">def</span></span> test_login_and_browse_site\r
+\r
+    <span style="font-style: italic"><span style="color: #9A1900"># User avs logs in</span></span>\r
+    avs <span style="color: #990000">=</span> login<span style="color: #990000">(:</span>avs<span style="color: #990000">)</span>\r
+    <span style="font-style: italic"><span style="color: #9A1900"># User guest logs in</span></span>\r
+    guest <span style="color: #990000">=</span> login<span style="color: #990000">(:</span>guest<span style="color: #990000">)</span>\r
+\r
+    <span style="font-style: italic"><span style="color: #9A1900"># Both are now available in different sessions</span></span>\r
+    assert_equal <span style="color: #FF0000">'Welcome avs!'</span><span style="color: #990000">,</span> avs<span style="color: #990000">.</span>flash<span style="color: #990000">[:</span>notice<span style="color: #990000">]</span>\r
+    assert_equal <span style="color: #FF0000">'Welcome guest!'</span><span style="color: #990000">,</span> guest<span style="color: #990000">.</span>flash<span style="color: #990000">[:</span>notice<span style="color: #990000">]</span>\r
+\r
+    <span style="font-style: italic"><span style="color: #9A1900"># User avs can browse site</span></span>\r
+    avs<span style="color: #990000">.</span>browses_site\r
+    <span style="font-style: italic"><span style="color: #9A1900"># User guest can browse site aswell</span></span>\r
+    guest<span style="color: #990000">.</span>browses_site\r
+\r
+    <span style="font-style: italic"><span style="color: #9A1900"># Continue with other assertions</span></span>\r
+  <span style="font-weight: bold"><span style="color: #0000FF">end</span></span>\r
+\r
+  private\r
+\r
+    <span style="font-weight: bold"><span style="color: #0000FF">module</span></span> CustomDsl\r
+      <span style="font-weight: bold"><span style="color: #0000FF">def</span></span> browses_site\r
+        get <span style="color: #FF0000">"/products/all"</span>\r
+        assert_response <span style="color: #990000">:</span>success\r
+        assert assigns<span style="color: #990000">(:</span>products<span style="color: #990000">)</span>\r
+      <span style="font-weight: bold"><span style="color: #0000FF">end</span></span>\r
+    <span style="font-weight: bold"><span style="color: #0000FF">end</span></span>\r
+\r
+    <span style="font-weight: bold"><span style="color: #0000FF">def</span></span> login<span style="color: #990000">(</span>user<span style="color: #990000">)</span>\r
+      open_session <span style="font-weight: bold"><span style="color: #0000FF">do</span></span> <span style="color: #990000">|</span>sess<span style="color: #990000">|</span>\r
+        sess<span style="color: #990000">.</span>extend<span style="color: #990000">(</span>CustomDsl<span style="color: #990000">)</span>\r
+        u <span style="color: #990000">=</span> users<span style="color: #990000">(</span>user<span style="color: #990000">)</span>\r
+        sess<span style="color: #990000">.</span>https!\r
+        sess<span style="color: #990000">.</span>post <span style="color: #FF0000">"/login"</span><span style="color: #990000">,</span> <span style="color: #990000">:</span>username <span style="color: #990000">=&gt;</span> u<span style="color: #990000">.</span>username<span style="color: #990000">,</span> <span style="color: #990000">:</span>password <span style="color: #990000">=&gt;</span> u<span style="color: #990000">.</span>password\r
+        assert_equal <span style="color: #FF0000">'/welcome'</span><span style="color: #990000">,</span> path\r
+        sess<span style="color: #990000">.</span>https!<span style="color: #990000">(</span><span style="font-weight: bold"><span style="color: #0000FF">false</span></span><span style="color: #990000">)</span>\r
+      <span style="font-weight: bold"><span style="color: #0000FF">end</span></span>\r
+    <span style="font-weight: bold"><span style="color: #0000FF">end</span></span>\r
+<span style="font-weight: bold"><span style="color: #0000FF">end</span></span>\r
+</tt></pre></div></div>\r
+</div>\r
+<h2 id="_rake_tasks_for_running_your_tests">6. Rake Tasks for Running your Tests</h2>\r
+<div class="sectionbody">\r
+<div class="para"><p>You don't need to set up and run your tests by hand on a test-by-test basis. Rails comes with a number of rake tasks to help in testing. The table below lists all rake tasks that come along in the default Rakefile when you initiate a Rail project.</p></div>\r
+<div class="para"><p>--------------------------------`----------------------------------------------------\r
+Tasks                           Description</p></div>\r
+<div class="listingblock">\r
+<div class="content">\r
+<pre><tt>+rake test+                     Runs all unit, functional and integration tests. You can also simply run +rake+ as the _test_ target is the default.\r
++rake test:units+               Runs all the unit tests from +test/unit+\r
++rake test:functionals+         Runs all the functional tests from +test/functional+\r
++rake test:integration+         Runs all the integration tests from +test/integration+\r
++rake test:recent+              Tests recent changes\r
++rake test:uncommitted+         Runs all the tests which are uncommitted. Only supports Subversion\r
++rake test:plugins+             Run all the plugin tests from +vendor/plugins/*/**/test+ (or specify with +PLUGIN=_name_+)</tt></pre>\r
+</div></div>\r
+</div>\r
+<h2 id="_brief_note_about_test_unit">7. Brief Note About Test::Unit</h2>\r
+<div class="sectionbody">\r
+<div class="para"><p>Ruby ships with a boat load of libraries. One little gem of a library is <tt>Test::Unit</tt>, a framework for unit testing in Ruby. All the basic assertions discussed above are actually defined in <tt>Test::Unit::Assertions</tt>. The class <tt>ActiveSupport::TestCase</tt> which we have been using in our unit and functional tests extends <tt>Test::Unit::TestCase</tt> that it is how we can use all the basic assertions in our tests.</p></div>\r
+<div class="admonitionblock">\r
+<table><tr>\r
+<td class="icon">\r
+<img src="./images/icons/note.png" alt="Note" />\r
+</td>\r
+<td class="content">For more information on <tt>Test::Unit</tt>, refer to <a href="http://ruby-doc.org/stdlib/libdoc/test/unit/rdoc/">test/unit Documentation</a></td>\r
+</tr></table>\r
+</div>\r
+</div>\r
+<h2 id="_setup_and_teardown">8. Setup and Teardown</h2>\r
+<div class="sectionbody">\r
+<div class="para"><p>If you would like to run a block of code before the start of each test and another block of code after the end of each test you have two special callbacks for your rescue. Let's take note of this by looking at an example for our functional test in <tt>Posts</tt> controller:</p></div>\r
+<div class="listingblock">\r
+<div class="content"><!-- Generator: GNU source-highlight 2.9\r
+by Lorenzo Bettini\r
+http://www.lorenzobettini.it\r
+http://www.gnu.org/software/src-highlite -->\r
+<pre><tt><span style="font-weight: bold"><span style="color: #000080">require</span></span> <span style="color: #FF0000">'test_helper'</span>\r
+\r
+<span style="font-weight: bold"><span style="color: #0000FF">class</span></span> PostsControllerTest <span style="color: #990000">&lt;</span> ActionController<span style="color: #990000">::</span>TestCase\r
+\r
+  <span style="font-style: italic"><span style="color: #9A1900"># called before every single test</span></span>\r
+  <span style="font-weight: bold"><span style="color: #0000FF">def</span></span> setup\r
+    <span style="color: #009900">@post</span> <span style="color: #990000">=</span> posts<span style="color: #990000">(:</span>one<span style="color: #990000">)</span>\r
+  <span style="font-weight: bold"><span style="color: #0000FF">end</span></span>\r
+\r
+  <span style="font-style: italic"><span style="color: #9A1900"># called after every single test</span></span>\r
+  <span style="font-weight: bold"><span style="color: #0000FF">def</span></span> teardown\r
+    <span style="font-style: italic"><span style="color: #9A1900"># as we are re-initializing @post before every test</span></span>\r
+    <span style="font-style: italic"><span style="color: #9A1900"># setting it to nil here is not essential but I hope</span></span>\r
+    <span style="font-style: italic"><span style="color: #9A1900"># you understand how you can use the teardown method</span></span>\r
+    <span style="color: #009900">@post</span> <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #0000FF">nil</span></span>\r
+  <span style="font-weight: bold"><span style="color: #0000FF">end</span></span>\r
+\r
+  <span style="font-weight: bold"><span style="color: #0000FF">def</span></span> test_should_show_post\r
+    get <span style="color: #990000">:</span>show<span style="color: #990000">,</span> <span style="color: #990000">:</span>id <span style="color: #990000">=&gt;</span> <span style="color: #009900">@post</span><span style="color: #990000">.</span>id\r
+    assert_response <span style="color: #990000">:</span>success\r
+  <span style="font-weight: bold"><span style="color: #0000FF">end</span></span>\r
+\r
+  <span style="font-weight: bold"><span style="color: #0000FF">def</span></span> test_should_destroy_post\r
+    assert_difference<span style="color: #990000">(</span><span style="color: #FF0000">'Post.count'</span><span style="color: #990000">,</span> <span style="color: #990000">-</span><span style="color: #993399">1</span><span style="color: #990000">)</span> <span style="font-weight: bold"><span style="color: #0000FF">do</span></span>\r
+      delete <span style="color: #990000">:</span>destroy<span style="color: #990000">,</span> <span style="color: #990000">:</span>id <span style="color: #990000">=&gt;</span> <span style="color: #009900">@post</span><span style="color: #990000">.</span>id\r
+    <span style="font-weight: bold"><span style="color: #0000FF">end</span></span>\r
+\r
+    assert_redirected_to posts_path\r
+  <span style="font-weight: bold"><span style="color: #0000FF">end</span></span>\r
+\r
+<span style="font-weight: bold"><span style="color: #0000FF">end</span></span>\r
+</tt></pre></div></div>\r
+<div class="para"><p>Above, the <tt>setup</tt> method is called before each test and so <tt>@post</tt> is available for each of the tests. Rails implements <tt>setup</tt> and <tt>teardown</tt> as ActiveSupport::Callbacks. Which essentially means you need not only use <tt>setup</tt> and <tt>teardown</tt> as methods in your tests. You could specify them by using:</p></div>\r
+<div class="ilist"><ul>\r
+<li>\r
+<p>\r
+a block\r
+</p>\r
+</li>\r
+<li>\r
+<p>\r
+a method (like in the earlier example)\r
+</p>\r
+</li>\r
+<li>\r
+<p>\r
+a method name as a symbol\r
+</p>\r
+</li>\r
+<li>\r
+<p>\r
+a lambda\r
+</p>\r
+</li>\r
+</ul></div>\r
+<div class="para"><p>Let's see the earlier example by specifying <tt>setup</tt> callback by specifying a method name as a symbol:</p></div>\r
+<div class="listingblock">\r
+<div class="content"><!-- Generator: GNU source-highlight 2.9\r
+by Lorenzo Bettini\r
+http://www.lorenzobettini.it\r
+http://www.gnu.org/software/src-highlite -->\r
+<pre><tt><span style="font-weight: bold"><span style="color: #000080">require</span></span> <span style="color: #FF0000">'../test_helper'</span>\r
+\r
+<span style="font-weight: bold"><span style="color: #0000FF">class</span></span> PostsControllerTest <span style="color: #990000">&lt;</span> ActionController<span style="color: #990000">::</span>TestCase\r
+\r
+  <span style="font-style: italic"><span style="color: #9A1900"># called before every single test</span></span>\r
+  setup <span style="color: #990000">:</span>initialize_post\r
+\r
+  <span style="font-style: italic"><span style="color: #9A1900"># called after every single test</span></span>\r
+  <span style="font-weight: bold"><span style="color: #0000FF">def</span></span> teardown\r
+    <span style="color: #009900">@post</span> <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #0000FF">nil</span></span>\r
+  <span style="font-weight: bold"><span style="color: #0000FF">end</span></span>\r
+\r
+  <span style="font-weight: bold"><span style="color: #0000FF">def</span></span> test_should_show_post\r
+    get <span style="color: #990000">:</span>show<span style="color: #990000">,</span> <span style="color: #990000">:</span>id <span style="color: #990000">=&gt;</span> <span style="color: #009900">@post</span><span style="color: #990000">.</span>id\r
+    assert_response <span style="color: #990000">:</span>success\r
+  <span style="font-weight: bold"><span style="color: #0000FF">end</span></span>\r
+\r
+  <span style="font-weight: bold"><span style="color: #0000FF">def</span></span> test_should_update_post\r
+    put <span style="color: #990000">:</span>update<span style="color: #990000">,</span> <span style="color: #990000">:</span>id <span style="color: #990000">=&gt;</span> <span style="color: #009900">@post</span><span style="color: #990000">.</span>id<span style="color: #990000">,</span> <span style="color: #990000">:</span>post <span style="color: #990000">=&gt;</span> <span style="color: #FF0000">{</span> <span style="color: #FF0000">}</span>\r
+    assert_redirected_to post_path<span style="color: #990000">(</span>assigns<span style="color: #990000">(:</span>post<span style="color: #990000">))</span>\r
+  <span style="font-weight: bold"><span style="color: #0000FF">end</span></span>\r
+\r
+  <span style="font-weight: bold"><span style="color: #0000FF">def</span></span> test_should_destroy_post\r
+    assert_difference<span style="color: #990000">(</span><span style="color: #FF0000">'Post.count'</span><span style="color: #990000">,</span> <span style="color: #990000">-</span><span style="color: #993399">1</span><span style="color: #990000">)</span> <span style="font-weight: bold"><span style="color: #0000FF">do</span></span>\r
+      delete <span style="color: #990000">:</span>destroy<span style="color: #990000">,</span> <span style="color: #990000">:</span>id <span style="color: #990000">=&gt;</span> <span style="color: #009900">@post</span><span style="color: #990000">.</span>id\r
+    <span style="font-weight: bold"><span style="color: #0000FF">end</span></span>\r
+\r
+    assert_redirected_to posts_path\r
+  <span style="font-weight: bold"><span style="color: #0000FF">end</span></span>\r
+\r
+  private\r
+\r
+  <span style="font-weight: bold"><span style="color: #0000FF">def</span></span> initialize_post\r
+    <span style="color: #009900">@post</span> <span style="color: #990000">=</span> posts<span style="color: #990000">(:</span>one<span style="color: #990000">)</span>\r
+  <span style="font-weight: bold"><span style="color: #0000FF">end</span></span>\r
+\r
+<span style="font-weight: bold"><span style="color: #0000FF">end</span></span>\r
+</tt></pre></div></div>\r
+</div>\r
+<h2 id="_testing_routes">9. Testing Routes</h2>\r
+<div class="sectionbody">\r
+<div class="para"><p>Like everything else in you Rails application, it's recommended to test you routes. An example test for a route in the default <tt>show</tt> action of <tt>Posts</tt> controller above should look like:</p></div>\r
+<div class="listingblock">\r
+<div class="content"><!-- Generator: GNU source-highlight 2.9\r
+by Lorenzo Bettini\r
+http://www.lorenzobettini.it\r
+http://www.gnu.org/software/src-highlite -->\r
+<pre><tt><span style="font-weight: bold"><span style="color: #0000FF">def</span></span> test_should_route_to_post\r
+  assert_routing <span style="color: #FF0000">'/posts/1'</span><span style="color: #990000">,</span> <span style="color: #FF0000">{</span> <span style="color: #990000">:</span>controller <span style="color: #990000">=&gt;</span> <span style="color: #FF0000">"posts"</span><span style="color: #990000">,</span> <span style="color: #990000">:</span>action <span style="color: #990000">=&gt;</span> <span style="color: #FF0000">"show"</span><span style="color: #990000">,</span> <span style="color: #990000">:</span>id <span style="color: #990000">=&gt;</span> <span style="color: #FF0000">"1"</span> <span style="color: #FF0000">}</span>\r
+<span style="font-weight: bold"><span style="color: #0000FF">end</span></span>\r
+</tt></pre></div></div>\r
+</div>\r
+<h2 id="_testing_your_mailers">10. Testing Your Mailers</h2>\r
+<div class="sectionbody">\r
+<div class="para"><p>Testing mailer classes requires some specific tools to do a thorough job.</p></div>\r
+<h3 id="_keeping_the_postman_in_check">10.1. Keeping the Postman in Check</h3>\r
+<div class="para"><p>Your <tt>ActionMailer</tt> classes &#8212; like every other part of your Rails application &#8212; should be tested to ensure that it is working as expected.</p></div>\r
+<div class="para"><p>The goals of testing your <tt>ActionMailer</tt> classes are to ensure that:</p></div>\r
+<div class="ilist"><ul>\r
+<li>\r
+<p>\r
+emails are being processed (created and sent)\r
+</p>\r
+</li>\r
+<li>\r
+<p>\r
+the email content is correct (subject, sender, body, etc)\r
+</p>\r
+</li>\r
+<li>\r
+<p>\r
+the right emails are being sent at the right times\r
+</p>\r
+</li>\r
+</ul></div>\r
+<h4 id="_from_all_sides">10.1.1. From All Sides</h4>\r
+<div class="para"><p>There are two aspects of testing your mailer, the unit tests and the functional tests. In the unit tests, you run the mailer in isolation with tightly controlled inputs and compare the output to a knownvalue (a fixture &#8212; yay! more fixtures!). In the functional tests you don't so much test the minute details produced by the mailer Instead we test that our controllers and models are using the mailer in the right way. You test to prove that the right email was sent at the right time.</p></div>\r
+<h3 id="_unit_testing">10.2. Unit Testing</h3>\r
+<div class="para"><p>In order to test that your mailer is working as expected, you can use unit tests to compare the actual results of the mailer with pre-written examples of what should be produced.</p></div>\r
+<h4 id="_revenge_of_the_fixtures">10.2.1. Revenge of the Fixtures</h4>\r
+<div class="para"><p>For the purposes of unit testing a mailer, fixtures are used to provide an example of how the output <em>should</em> look. Because these are example emails, and not Active Record data like the other fixtures, they are kept in their own subdirectory apart from the other fixtures. The name of the directory within <tt>test/fixtures</tt> directly corresponds to the name of the mailer. So, for a mailer named <tt>UserMailer</tt>, the fixtures should reside in <tt>test/fixtures/user_mailer</tt> directory.</p></div>\r
+<div class="para"><p>When you generated your mailer, the generator creates stub fixtures for each of the mailers actions. If you didn't use the generator you'll have to make those files yourself.</p></div>\r
+<h4 id="_the_basic_test_case">10.2.2. The Basic Test case</h4>\r
+<div class="para"><p>Here's a unit test to test a mailer named <tt>UserMailer</tt> whose action <tt>invite</tt> is used to send an invitation to a friend. It is an adapted version of the base test created by the generator for an <tt>invite</tt> action.</p></div>\r
+<div class="listingblock">\r
+<div class="content"><!-- Generator: GNU source-highlight 2.9\r
+by Lorenzo Bettini\r
+http://www.lorenzobettini.it\r
+http://www.gnu.org/software/src-highlite -->\r
+<pre><tt><span style="font-weight: bold"><span style="color: #000080">require</span></span> <span style="color: #FF0000">'test_helper'</span>\r
+\r
+<span style="font-weight: bold"><span style="color: #0000FF">class</span></span> UserMailerTest <span style="color: #990000">&lt;</span> ActionMailer<span style="color: #990000">::</span>TestCase\r
+  tests UserMailer\r
+  <span style="font-weight: bold"><span style="color: #0000FF">def</span></span> test_invite\r
+    <span style="color: #009900">@expected</span><span style="color: #990000">.</span>from    <span style="color: #990000">=</span> <span style="color: #FF0000">'me@example.com'</span>\r
+    <span style="color: #009900">@expected</span><span style="color: #990000">.</span>to      <span style="color: #990000">=</span> <span style="color: #FF0000">'friend@example.com'</span>\r
+    <span style="color: #009900">@expected</span><span style="color: #990000">.</span>subject <span style="color: #990000">=</span> <span style="color: #FF0000">"You have been invited by #{@expected.from}"</span>\r
+    <span style="color: #009900">@expected</span><span style="color: #990000">.</span>body    <span style="color: #990000">=</span> read_fixture<span style="color: #990000">(</span><span style="color: #FF0000">'invite'</span><span style="color: #990000">)</span>\r
+    <span style="color: #009900">@expected</span><span style="color: #990000">.</span>date    <span style="color: #990000">=</span> Time<span style="color: #990000">.</span>now\r
+\r
+    assert_equal <span style="color: #009900">@expected</span><span style="color: #990000">.</span>encoded<span style="color: #990000">,</span> UserMailer<span style="color: #990000">.</span>create_invite<span style="color: #990000">(</span><span style="color: #FF0000">'me@example.com'</span><span style="color: #990000">,</span> <span style="color: #FF0000">'friend@example.com'</span><span style="color: #990000">,</span> <span style="color: #009900">@expected</span><span style="color: #990000">.</span>date<span style="color: #990000">).</span>encoded\r
+  <span style="font-weight: bold"><span style="color: #0000FF">end</span></span>\r
+\r
+<span style="font-weight: bold"><span style="color: #0000FF">end</span></span>\r
+</tt></pre></div></div>\r
+<div class="para"><p>In this test, <tt>@expected</tt> is an instance of <tt>TMail::Mail</tt> that you can use in your tests. It is defined in <tt>ActionMailer::TestCase</tt>. The test above uses <tt>@expected</tt> to construct an email, which it then asserts with email created by the custom mailer. The <tt>invite</tt> fixture is the body of the email and is used as the sample content to assert against. The helper <tt>read_fixture</tt> is used to read in the content from this file.</p></div>\r
+<div class="para"><p>Here's the content of the <tt>invite</tt> fixture:</p></div>\r
+<div class="listingblock">\r
+<div class="content">\r
+<pre><tt>Hi friend@example.com,\r
+\r
+You have been invited.\r
+\r
+Cheers!</tt></pre>\r
+</div></div>\r
+<div class="para"><p>This is the right time to understand a little more about writing tests for your mailers. The line <tt>ActionMailer::Base.delivery_method = :test</tt> in <tt>config/environments/test.rb</tt> sets the delivery method to test mode so that email will not actually be delivered (useful to avoid spamming your users while testing) but instead it will be appended to an array (<tt>ActionMailer::Base.deliveries</tt>).</p></div>\r
+<div class="para"><p>However often in unit tests, mails will not actually be sent, simply constructed, as in the example above, where the precise content of the email is checked against what it should be.</p></div>\r
+<h3 id="_functional_testing">10.3. Functional Testing</h3>\r
+<div class="para"><p>Functional testing for mailers involves more than just checking that the email body, recipients and so forth are correct. In functional mail tests you call the mail deliver methods and check that the appropriate emails have been appended to the delivery list. It is fairly safe to assume that the deliver methods themselves do their job You are probably more interested in is whether your own business logic is sending emails when you expect them to got out. For example, you can check that the invite friend operation is sending an email appropriately:</p></div>\r
+<div class="listingblock">\r
+<div class="content"><!-- Generator: GNU source-highlight 2.9\r
+by Lorenzo Bettini\r
+http://www.lorenzobettini.it\r
+http://www.gnu.org/software/src-highlite -->\r
+<pre><tt><span style="font-weight: bold"><span style="color: #000080">require</span></span> <span style="color: #FF0000">'test_helper'</span>\r
+\r
+<span style="font-weight: bold"><span style="color: #0000FF">class</span></span> UserControllerTest <span style="color: #990000">&lt;</span> ActionController<span style="color: #990000">::</span>TestCase\r
+  <span style="font-weight: bold"><span style="color: #0000FF">def</span></span> test_invite_friend\r
+    assert_difference <span style="color: #FF0000">'ActionMailer::Base.deliveries.size'</span><span style="color: #990000">,</span> <span style="color: #990000">+</span><span style="color: #993399">1</span> <span style="font-weight: bold"><span style="color: #0000FF">do</span></span>\r
+      post <span style="color: #990000">:</span>invite_friend<span style="color: #990000">,</span> <span style="color: #990000">:</span>email <span style="color: #990000">=&gt;</span> <span style="color: #FF0000">'friend@example.com'</span>\r
+    <span style="font-weight: bold"><span style="color: #0000FF">end</span></span>\r
+    invite_email <span style="color: #990000">=</span> ActionMailer<span style="color: #990000">::</span>Base<span style="color: #990000">.</span>deliveries<span style="color: #990000">.</span>first\r
+\r
+    assert_equal invite_email<span style="color: #990000">.</span>subject<span style="color: #990000">,</span> <span style="color: #FF0000">"You have been invited by me@example.com"</span>\r
+    assert_equal invite_email<span style="color: #990000">.</span>to<span style="color: #990000">[</span><span style="color: #993399">0</span><span style="color: #990000">],</span> <span style="color: #FF0000">'friend@example.com'</span>\r
+    assert_match <span style="color: #FF6600">/Hi friend@example.com/</span><span style="color: #990000">,</span> invite_email<span style="color: #990000">.</span>body\r
+  <span style="font-weight: bold"><span style="color: #0000FF">end</span></span>\r
+<span style="font-weight: bold"><span style="color: #0000FF">end</span></span>\r
+</tt></pre></div></div>\r
+</div>\r
+<h2 id="_other_testing_approaches">11. Other Testing Approaches</h2>\r
+<div class="sectionbody">\r
+<div class="para"><p>The built-in <tt>test/unit</tt> based testing is not the only way to test Rails applications. Rails developers have come up with a wide variety of other approaches and aids for testing, including:</p></div>\r
+<div class="ilist"><ul>\r
+<li>\r
+<p>\r
+<a href="http://avdi.org/projects/nulldb/">NullDB</a>, a way to speed up testing by avoiding database use.\r
+</p>\r
+</li>\r
+<li>\r
+<p>\r
+<a href="http://github.com/thoughtbot/factory_girl/tree/master">Factory Girl</a>, as replacement for fixtures.\r
+</p>\r
+</li>\r
+<li>\r
+<p>\r
+<a href="http://www.thoughtbot.com/projects/shoulda">Shoulda</a>, an extension to <tt>test/unit</tt> with additional helpers, macros, and assertions.\r
+</p>\r
+</li>\r
+<li>\r
+<p>\r
+link: <a href="http://rspec.info/">RSpec</a>, a behavior-driven development framework\r
+</p>\r
+</li>\r
+</ul></div>\r
+</div>\r
+<h2 id="_changelog">12. Changelog</h2>\r
+<div class="sectionbody">\r
+<div class="para"><p><a href="http://rails.lighthouseapp.com/projects/16213-rails-guides/tickets/8">Lighthouse ticket</a></p></div>\r
+<div class="ilist"><ul>\r
+<li>\r
+<p>\r
+November 13, 2008: Revised based on feedback from Pratik Naik by <a href="../authors.html#asurve">Akshay Surve</a> (not yet approved for publication)\r
+</p>\r
+</li>\r
+<li>\r
+<p>\r
+October 14, 2008: Edit and formatting pass by <a href="../authors.html#mgunderloy">Mike Gunderloy</a> (not yet approved for publication)\r
+</p>\r
+</li>\r
+<li>\r
+<p>\r
+October 12, 2008: First draft by <a href="../authors.html#asurve">Akshay Surve</a> (not yet approved for publication)\r
+</p>\r
+</li>\r
+</ul></div>\r
+</div>\r
+
+               </div>
+       </div>
+</body>
+</html>