<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: How To: Setup RSpec, Cucumber, Webrat, RCov and Autotest on Leopard</title>
	<atom:link href="http://www.claytonlz.com/2009/04/how-to-setup-rspec-cucumber-webrat-rcov-and-autotest-on-leopard/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.claytonlz.com/2009/04/how-to-setup-rspec-cucumber-webrat-rcov-and-autotest-on-leopard/</link>
	<description>Agile Practitioner, CSP, CSPO, CSM in Phoenix, AZ</description>
	<lastBuildDate>Sat, 05 Nov 2011 10:33:16 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Bob</title>
		<link>http://www.claytonlz.com/2009/04/how-to-setup-rspec-cucumber-webrat-rcov-and-autotest-on-leopard/#comment-70</link>
		<dc:creator>Bob</dc:creator>
		<pubDate>Sat, 05 Nov 2011 10:33:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.claytonlz.com/?p=220#comment-70</guid>
		<description>Possible alternatives given the passage of time since the original post:

RSpec -&gt; still RSpec!
Cucumber -&gt; for rails, maybe Steak (&quot;a minimal extension of RSpec-Rails that adds several conveniences to do acceptance testing of Rails applications using Capybara.&quot;)
Webrat -&gt; maybe Capybara (built to work nicely with Cucumber)
RCov -&gt; use SimpleCov in ruby 1.9
Autotest -&gt; maybe Guard??  haven&#039;t tried it</description>
		<content:encoded><![CDATA[<p>Possible alternatives given the passage of time since the original post:</p>
<p>RSpec -&gt; still RSpec!<br />
Cucumber -&gt; for rails, maybe Steak (&#8220;a minimal extension of RSpec-Rails that adds several conveniences to do acceptance testing of Rails applications using Capybara.&#8221;)<br />
Webrat -&gt; maybe Capybara (built to work nicely with Cucumber)<br />
RCov -&gt; use SimpleCov in ruby 1.9<br />
Autotest -&gt; maybe Guard??  haven&#8217;t tried it</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Div</title>
		<link>http://www.claytonlz.com/2009/04/how-to-setup-rspec-cucumber-webrat-rcov-and-autotest-on-leopard/#comment-69</link>
		<dc:creator>Div</dc:creator>
		<pubDate>Tue, 20 Sep 2011 11:27:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.claytonlz.com/?p=220#comment-69</guid>
		<description>I am trying to run my rspec test suite for models &amp; always shows 8 failure in Ubuntu box
&gt;&gt; rspec spec/models

But same thing works well and gives 0 failures on windows box. Tried more than 10 times, but same result. Any clues on this? Using
Ubuntu 10.04
Rails 3
Rspec 2.6.4</description>
		<content:encoded><![CDATA[<p>I am trying to run my rspec test suite for models &amp; always shows 8 failure in Ubuntu box<br />
&gt;&gt; rspec spec/models</p>
<p>But same thing works well and gives 0 failures on windows box. Tried more than 10 times, but same result. Any clues on this? Using<br />
Ubuntu 10.04<br />
Rails 3<br />
Rspec 2.6.4</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John H</title>
		<link>http://www.claytonlz.com/2009/04/how-to-setup-rspec-cucumber-webrat-rcov-and-autotest-on-leopard/#comment-68</link>
		<dc:creator>John H</dc:creator>
		<pubDate>Wed, 09 Mar 2011 22:06:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.claytonlz.com/?p=220#comment-68</guid>
		<description>What&#039;s the Rails 3 equivalent?  No more 
Spec::Rake::SpecTask</description>
		<content:encoded><![CDATA[<p>What&#8217;s the Rails 3 equivalent?  No more <br />
Spec::Rake::SpecTask</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Bethany</title>
		<link>http://www.claytonlz.com/2009/04/how-to-setup-rspec-cucumber-webrat-rcov-and-autotest-on-leopard/#comment-67</link>
		<dc:creator>Mike Bethany</dc:creator>
		<pubDate>Sat, 28 Aug 2010 16:06:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.claytonlz.com/?p=220#comment-67</guid>
		<description>I&#039;m still very new to all this but I like Machinist a LOT more than Factory Girl. It just seems a more natural way to do things but of course it&#039;s a personal thing.</description>
		<content:encoded><![CDATA[<p>I&#8217;m still very new to all this but I like Machinist a <span class="caps">LOT </span>more than Factory Girl. It just seems a more natural way to do things but of course it&#8217;s a personal thing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark</title>
		<link>http://www.claytonlz.com/2009/04/how-to-setup-rspec-cucumber-webrat-rcov-and-autotest-on-leopard/#comment-66</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Sat, 28 Aug 2010 14:13:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.claytonlz.com/?p=220#comment-66</guid>
		<description>Sorry for posting this here, but I&#039;m stumped with this curiosity and I&#039;m not sure where else to post it. I configured autotest to run RCov as soon as all of my Cucumber tests pass. I did this using one of autotest&#039;s hooks (http://gist.github.com/555162). That hook basically calls up the following rake task (http://gist.github.com/555163).

My problem with this though is that the tests get run twice. Once during the run_all_tests method of autotest, and then another time when the above rake task is called.

Is there a way to force this to just run the rake task once prior to displaying RCov results? Very minor problem if at all, I know, but I can&#039;t stop obsessing over it!</description>
		<content:encoded><![CDATA[<p>Sorry for posting this here, but I&#8217;m stumped with this curiosity and I&#8217;m not sure where else to post it. I configured autotest to run RCov as soon as all of my Cucumber tests pass. I did this using one of autotest&#8217;s hooks (<a href="http://gist.github.com/555162" rel="nofollow">http://gist.github.com/555162</a>). That hook basically calls up the following rake task (<a href="http://gist.github.com/555163" rel="nofollow">http://gist.github.com/555163</a>).</p>
<p>My problem with this though is that the tests get run twice. Once during the run_all_tests method of autotest, and then another time when the above rake task is called.</p>
<p>Is there a way to force this to just run the rake task once prior to displaying RCov results? Very minor problem if at all, I know, but I can&#8217;t stop obsessing over it!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Pence</title>
		<link>http://www.claytonlz.com/2009/04/how-to-setup-rspec-cucumber-webrat-rcov-and-autotest-on-leopard/#comment-65</link>
		<dc:creator>Mike Pence</dc:creator>
		<pubDate>Fri, 09 Jul 2010 17:29:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.claytonlz.com/?p=220#comment-65</guid>
		<description>I  also needed to do  a &quot;sudo gem install autotest-rails&quot;</description>
		<content:encoded><![CDATA[<p>I  also needed to do  a &#8220;sudo gem install autotest-rails&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Amiruddin Nagri</title>
		<link>http://www.claytonlz.com/2009/04/how-to-setup-rspec-cucumber-webrat-rcov-and-autotest-on-leopard/#comment-64</link>
		<dc:creator>Amiruddin Nagri</dc:creator>
		<pubDate>Fri, 11 Jun 2010 17:24:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.claytonlz.com/?p=220#comment-64</guid>
		<description>Very informative, thanks</description>
		<content:encoded><![CDATA[<p>Very informative, thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rake Tutorial &#124; Jason Seifer</title>
		<link>http://www.claytonlz.com/2009/04/how-to-setup-rspec-cucumber-webrat-rcov-and-autotest-on-leopard/#comment-63</link>
		<dc:creator>Rake Tutorial &#124; Jason Seifer</dc:creator>
		<pubDate>Wed, 07 Apr 2010 20:25:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.claytonlz.com/?p=220#comment-63</guid>
		<description>[...] task. I use this in Genius Pool for aggregate rcov data. It&#8217;s shamelessly stolen from Clayton Lengel-Zigich. Go check out that post for a good example of invoking other tasks from [...] </description>
		<content:encoded><![CDATA[<p>[...] task. I use this in Genius Pool for aggregate rcov data. It&#8217;s shamelessly stolen from Clayton Lengel-Zigich. Go check out that post for a good example of invoking other tasks from [...] </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cucumber e Webrat para aplicações em CakePHP &#124; sauloarruda.eti.br</title>
		<link>http://www.claytonlz.com/2009/04/how-to-setup-rspec-cucumber-webrat-rcov-and-autotest-on-leopard/#comment-62</link>
		<dc:creator>Cucumber e Webrat para aplicações em CakePHP &#124; sauloarruda.eti.br</dc:creator>
		<pubDate>Wed, 17 Mar 2010 18:16:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.claytonlz.com/?p=220#comment-62</guid>
		<description>[...] de começar é indispensável instalar várias gems no seu ambiente. Para isso, siga este artigo que explica passo a passo tudo que deve ser instalado (e até um pouco [...] </description>
		<content:encoded><![CDATA[<p>[...] de come&Atilde;&sect;ar &Atilde;&copy; indispens&Atilde;&iexcl;vel instalar v&Atilde;&iexcl;rias gems no seu ambiente. Para isso, siga este artigo que explica passo a passo tudo que deve ser instalado (e at&Atilde;&copy; um pouco [...] </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: links, ideas and geek stuff &#187; Blog Archive &#187; links for 2010-01-17</title>
		<link>http://www.claytonlz.com/2009/04/how-to-setup-rspec-cucumber-webrat-rcov-and-autotest-on-leopard/#comment-61</link>
		<dc:creator>links, ideas and geek stuff &#187; Blog Archive &#187; links for 2010-01-17</dc:creator>
		<pubDate>Sun, 17 Jan 2010 19:35:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.claytonlz.com/?p=220#comment-61</guid>
		<description>[...] How To: Setup RSpec, Cucumber, Webrat, RCov and Autotest on Leopard &#124; Clayton Lengel-Zigich [...] </description>
		<content:encoded><![CDATA[<p>[...] How To: Setup RSpec, Cucumber, Webrat, RCov and Autotest on Leopard | Clayton Lengel-Zigich [...] </p>
]]></content:encoded>
	</item>
</channel>
</rss>

