<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: Testing in Rails: Part 11 - Running Unit Tests</title>
	<atom:link href="http://www.nullislove.com/2008/02/27/testing-in-rails-part-11-running-unit-tests/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nullislove.com/2008/02/27/testing-in-rails-part-11-running-unit-tests/</link>
	<description>Code for Coders</description>
	<pubDate>Thu, 20 Nov 2008 16:31:16 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: Max</title>
		<link>http://www.nullislove.com/2008/02/27/testing-in-rails-part-11-running-unit-tests/#comment-1146</link>
		<dc:creator>Max</dc:creator>
		<pubDate>Wed, 28 May 2008 12:30:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.nullislove.com/2008/02/27/testing-in-rails-part-10-running-unit-tests/#comment-1146</guid>
		<description>Thanks very much for this series. Like Robin2 above I'm now in the process of writing full unit tests for my first full Rails app. Looking forward to you words on functional and integration tests!</description>
		<content:encoded><![CDATA[<p>Thanks very much for this series. Like Robin2 above I&#8217;m now in the process of writing full unit tests for my first full Rails app. Looking forward to you words on functional and integration tests!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: grosser</title>
		<link>http://www.nullislove.com/2008/02/27/testing-in-rails-part-11-running-unit-tests/#comment-1078</link>
		<dc:creator>grosser</dc:creator>
		<pubDate>Tue, 25 Mar 2008 09:21:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.nullislove.com/2008/02/27/testing-in-rails-part-10-running-unit-tests/#comment-1078</guid>
		<description>another way of testing one test / one testcase
rake test:blog -&#62; only the Blog Testcase
rake spec:blog -&#62; only the Blog Spec
rake test:blog:create -&#62; only the tests matching /create/ in Blog
rake spec:blog:delete -&#62; only the first example matching /create/ in Blog
rake test:blog_C -&#62; only the BlogController Test

http://pragmatig.wordpress.com/2008/03/19/testing-a-single-example-spec-testcase-test/</description>
		<content:encoded><![CDATA[<p>another way of testing one test / one testcase<br />
rake test:blog -&gt; only the Blog Testcase<br />
rake spec:blog -&gt; only the Blog Spec<br />
rake test:blog:create -&gt; only the tests matching /create/ in Blog<br />
rake spec:blog:delete -&gt; only the first example matching /create/ in Blog<br />
rake test:blog_C -&gt; only the BlogController Test</p>
<p><a href="http://pragmatig.wordpress.com/2008/03/19/testing-a-single-example-spec-testcase-test/" rel="nofollow">http://pragmatig.wordpress.com/2008/03/19/testing-a-single-example-spec-testcase-test/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jørgen K</title>
		<link>http://www.nullislove.com/2008/02/27/testing-in-rails-part-11-running-unit-tests/#comment-1063</link>
		<dc:creator>Jørgen K</dc:creator>
		<pubDate>Thu, 13 Mar 2008 14:29:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.nullislove.com/2008/02/27/testing-in-rails-part-10-running-unit-tests/#comment-1063</guid>
		<description>I really liked your series of introduction to testing Ruby/Rails! Lots of good tips here. Keep up all the good work!
I'm with Robin2 on this one; I'll have to put in some more work into testing. Guess I'm just too grown into the habit of loading up the browser everytime, but with these articles, I'm all ready for testing.</description>
		<content:encoded><![CDATA[<p>I really liked your series of introduction to testing Ruby/Rails! Lots of good tips here. Keep up all the good work!<br />
I&#8217;m with Robin2 on this one; I&#8217;ll have to put in some more work into testing. Guess I&#8217;m just too grown into the habit of loading up the browser everytime, but with these articles, I&#8217;m all ready for testing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robin2</title>
		<link>http://www.nullislove.com/2008/02/27/testing-in-rails-part-11-running-unit-tests/#comment-1055</link>
		<dc:creator>Robin2</dc:creator>
		<pubDate>Mon, 03 Mar 2008 12:00:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.nullislove.com/2008/02/27/testing-in-rails-part-10-running-unit-tests/#comment-1055</guid>
		<description>This is really helpful - keep up the good work.

Unfortunately it means I have a lot more work to do to retrofit sufficient testing to my 3/4 finished application.</description>
		<content:encoded><![CDATA[<p>This is really helpful - keep up the good work.</p>
<p>Unfortunately it means I have a lot more work to do to retrofit sufficient testing to my 3/4 finished application.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Spurr</title>
		<link>http://www.nullislove.com/2008/02/27/testing-in-rails-part-11-running-unit-tests/#comment-1054</link>
		<dc:creator>David Spurr</dc:creator>
		<pubDate>Sun, 02 Mar 2008 16:49:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.nullislove.com/2008/02/27/testing-in-rails-part-10-running-unit-tests/#comment-1054</guid>
		<description>You'll probably mention this later in the series, but the best way I've found to run your tests for Rails is using the ZenTest autotest, having your tests automatically run whenever you modify your code or the test is just the best way to keep on top of testing. I have it running any time I'm changing anything in the codebase.</description>
		<content:encoded><![CDATA[<p>You&#8217;ll probably mention this later in the series, but the best way I&#8217;ve found to run your tests for Rails is using the ZenTest autotest, having your tests automatically run whenever you modify your code or the test is just the best way to keep on top of testing. I have it running any time I&#8217;m changing anything in the codebase.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: A Fresh Cup &#187; Blog Archive &#187; Double Shot #154</title>
		<link>http://www.nullislove.com/2008/02/27/testing-in-rails-part-11-running-unit-tests/#comment-1048</link>
		<dc:creator>A Fresh Cup &#187; Blog Archive &#187; Double Shot #154</dc:creator>
		<pubDate>Thu, 28 Feb 2008 14:03:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.nullislove.com/2008/02/27/testing-in-rails-part-10-running-unit-tests/#comment-1048</guid>
		<description>[...] Testing in Rails: Part 11 - Running Unit Tests - More testing for fun and profit. [...]</description>
		<content:encoded><![CDATA[<p>[...] Testing in Rails: Part 11 - Running Unit Tests - More testing for fun and profit. [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
