<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>furmanek.net &#187; testing</title>
	<atom:link href="http://www.furmanek.net/category/testing/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.furmanek.net</link>
	<description>Greg Furmanek's personal blog</description>
	<lastBuildDate>Fri, 16 Jul 2010 22:29:57 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>AutoGrowling: making autotest and spectest work with Growl</title>
		<link>http://www.furmanek.net/206/autogrowling-making-autotest-and-spectest-work-with-growl/</link>
		<comments>http://www.furmanek.net/206/autogrowling-making-autotest-and-spectest-work-with-growl/#comments</comments>
		<pubDate>Mon, 27 Apr 2009 00:46:12 +0000</pubDate>
		<dc:creator>Gregory Furmanek</dc:creator>
				<category><![CDATA[Ruby]]></category>
		<category><![CDATA[growl]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[testing]]></category>

		<guid isPermaLink="false">http://www.furmanek.net/?p=206</guid>
		<description><![CDATA[I like test and feature driven development.  It keeps me on track when writing ruby code.  Since I work on few different projects and some of these projects use TestUnit while others use Rspec I needed the .autospec hook to handle both formats. 
So here is another tutorial on how to get these [...]]]></description>
			<content:encoded><![CDATA[<p>I like test and feature driven development.  It keeps me on track when writing ruby code.  Since I work on few different projects and some of these projects use TestUnit while others use Rspec I needed the .autospec hook to handle both formats. </p>
<p>So here is another tutorial on how to get these things working together:</p>
<ol>
<li> Download Growl from: http://growl.info/</li>
<li> Install the downloaded dmg</li>
<li> Install growlnotify from Extras/growlnotify folder in the dmg</li>
<p>Copy the folder to your desktop<br />
Open the terminal and run following commands.</p>

<div class="wp_codebox_msgheader"><span class="right"></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p206code4'); return false;">View Code</a> BASH</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table width="100%" ><tr id="p2064"><td class="code" id="p206code4"><pre class="bash" style="font-family:monospace;">$ <span style="color: #7a0874; font-weight: bold;">cd</span> Desktop<span style="color: #000000; font-weight: bold;">/</span>growlnotify
$ <span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">sh</span> install.sh</pre></td></tr></table></div>

<li> Create
<pre>~/.autotest_images/</pre>
<p> folder.</li>
<li>Save following images into the folder.</li>
<p>
<a href='http://www.furmanek.net/206/autogrowling-making-autotest-and-spectest-work-with-growl/rails_fail/' title='rails_fail'><img width="50" height="64" src="http://www.furmanek.net/wp-content/uploads/2009/04/rails_fail.png" class="attachment-thumbnail" alt="" title="rails_fail" /></a>
<a href='http://www.furmanek.net/206/autogrowling-making-autotest-and-spectest-work-with-growl/rails_pass/' title='rails_pass'><img width="50" height="64" src="http://www.furmanek.net/wp-content/uploads/2009/04/rails_pass.png" class="attachment-thumbnail" alt="" title="rails_pass" /></a>
<a href='http://www.furmanek.net/206/autogrowling-making-autotest-and-spectest-work-with-growl/rails_pending/' title='rails_pending'><img width="50" height="64" src="http://www.furmanek.net/wp-content/uploads/2009/04/rails_pending.png" class="attachment-thumbnail" alt="" title="rails_pending" /></a>

</ol>
<p>Install following gems: ZenTest, redgreen:</p>

<div class="wp_codebox_msgheader"><span class="right"></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p206code5'); return false;">View Code</a> BASH</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table width="100%" ><tr id="p2065"><td class="code" id="p206code5"><pre class="bash" style="font-family:monospace;">$ <span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #c20cb9; font-weight: bold;">sudo</span><span style="color: #7a0874; font-weight: bold;">&#93;</span> gem <span style="color: #c20cb9; font-weight: bold;">install</span> ZenTest
$ <span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #c20cb9; font-weight: bold;">sudo</span><span style="color: #7a0874; font-weight: bold;">&#93;</span> gem <span style="color: #c20cb9; font-weight: bold;">install</span> redgreen</pre></td></tr></table></div>

<p><a href="http://www.furmanek.net/wp-content/downloads/autotest.rb">Download</a> the script below and rename the file to <strong>.autotest</strong> and place it in your home folder user folder.</p>

<div class="wp_codebox_msgheader"><span class="right"></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p206code6'); return false;">View Code</a> RUBY</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table width="100%" ><tr id="p2066"><td class="code" id="p206code6"><pre class="ruby" style="font-family:monospace;"><span style="color:#008000; font-style:italic;">##!/usr/bin/ruby</span>
<span style="color:#CC0066; font-weight:bold;">require</span> <span style="color:#996600;">'autotest/redgreen'</span>
<span style="color:#CC0066; font-weight:bold;">require</span> <span style="color:#996600;">'autotest/timestamp'</span>
&nbsp;
<span style="color:#9966CC; font-weight:bold;">class</span> AutoTestNotifier
  IMAGEDIR = <span style="color:#CC00FF; font-weight:bold;">File</span>.<span style="color:#9900CC;">expand_path</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#996600;">&quot;~/.autotest_images&quot;</span><span style="color:#006600; font-weight:bold;">&#41;</span>
  FAIL_IMG = IMAGEDIR <span style="color:#006600; font-weight:bold;">+</span> <span style="color:#996600;">&quot;/rails_fail.png&quot;</span>
  PASS_IMG = IMAGEDIR <span style="color:#006600; font-weight:bold;">+</span> <span style="color:#996600;">&quot;/rails_pass.png&quot;</span>
  PEND_IMG = IMAGEDIR <span style="color:#006600; font-weight:bold;">+</span> <span style="color:#996600;">&quot;/rails_pending.png&quot;</span>
&nbsp;
  <span style="color:#9966CC; font-weight:bold;">def</span> <span style="color:#0000FF; font-weight:bold;">self</span>.<span style="color:#9900CC;">growl</span><span style="color:#006600; font-weight:bold;">&#40;</span>data<span style="color:#006600; font-weight:bold;">&#41;</span>
    AutoTestNotifier.<span style="color:#9900CC;">new</span><span style="color:#006600; font-weight:bold;">&#40;</span>data<span style="color:#006600; font-weight:bold;">&#41;</span>.<span style="color:#9900CC;">notify</span>
  <span style="color:#9966CC; font-weight:bold;">end</span>
&nbsp;
  <span style="color:#9966CC; font-weight:bold;">def</span> initialize<span style="color:#006600; font-weight:bold;">&#40;</span>data<span style="color:#006600; font-weight:bold;">&#41;</span>
    <span style="color:#0066ff; font-weight:bold;">@priority</span> = <span style="color:#0000FF; font-weight:bold;">nil</span>
    <span style="color:#0066ff; font-weight:bold;">@result</span> = <span style="color:#006600; font-weight:bold;">&#123;</span><span style="color:#006600; font-weight:bold;">&#125;</span>
    <span style="color:#9966CC; font-weight:bold;">if</span> data.<span style="color:#9900CC;">last</span> =~ <span style="color:#006600; font-weight:bold;">/</span>examples<span style="color:#006600; font-weight:bold;">/</span>i
      parse_spec_message<span style="color:#006600; font-weight:bold;">&#40;</span>data<span style="color:#006600; font-weight:bold;">&#41;</span>
    <span style="color:#9966CC; font-weight:bold;">else</span>
      parse_unit_message<span style="color:#006600; font-weight:bold;">&#40;</span>data<span style="color:#006600; font-weight:bold;">&#41;</span>
    <span style="color:#9966CC; font-weight:bold;">end</span>
  <span style="color:#9966CC; font-weight:bold;">end</span>
&nbsp;
  <span style="color:#9966CC; font-weight:bold;">def</span> parse_spec_message<span style="color:#006600; font-weight:bold;">&#40;</span>data<span style="color:#006600; font-weight:bold;">&#41;</span>
    <span style="color:#0066ff; font-weight:bold;">@result</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#ff3333; font-weight:bold;">:type</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#ff3333; font-weight:bold;">:spec</span>
    output = data.<span style="color:#9900CC;">last</span>.<span style="color:#9900CC;">strip</span>.<span style="color:#CC0066; font-weight:bold;">gsub</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">/</span>\e\<span style="color:#006600; font-weight:bold;">&#91;</span>\d<span style="color:#006600; font-weight:bold;">+</span>m<span style="color:#006600; font-weight:bold;">/</span>, <span style="color:#996600;">''</span><span style="color:#006600; font-weight:bold;">&#41;</span>.<span style="color:#CC0066; font-weight:bold;">split</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#996600;">','</span><span style="color:#006600; font-weight:bold;">&#41;</span>
    output.<span style="color:#9900CC;">map</span> <span style="color:#9966CC; font-weight:bold;">do</span> <span style="color:#006600; font-weight:bold;">|</span>i<span style="color:#006600; font-weight:bold;">|</span> 
      val, lbl = i.<span style="color:#9900CC;">strip</span>.<span style="color:#CC0066; font-weight:bold;">split</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#996600;">&quot; &quot;</span><span style="color:#006600; font-weight:bold;">&#41;</span>
      <span style="color:#0066ff; font-weight:bold;">@result</span><span style="color:#006600; font-weight:bold;">&#91;</span>lbl.<span style="color:#9900CC;">to_sym</span><span style="color:#006600; font-weight:bold;">&#93;</span> = val.<span style="color:#9900CC;">to_i</span>
    <span style="color:#9966CC; font-weight:bold;">end</span>
  <span style="color:#9966CC; font-weight:bold;">end</span>
&nbsp;
  <span style="color:#9966CC; font-weight:bold;">def</span> parse_unit_message<span style="color:#006600; font-weight:bold;">&#40;</span>data<span style="color:#006600; font-weight:bold;">&#41;</span>
    <span style="color:#0066ff; font-weight:bold;">@result</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#ff3333; font-weight:bold;">:type</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#ff3333; font-weight:bold;">:unit</span>
    output = data.<span style="color:#9900CC;">last</span>.<span style="color:#CC0066; font-weight:bold;">chop</span>.<span style="color:#CC0066; font-weight:bold;">split</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#996600;">','</span><span style="color:#006600; font-weight:bold;">&#41;</span>
    output.<span style="color:#9900CC;">map</span> <span style="color:#9966CC; font-weight:bold;">do</span> <span style="color:#006600; font-weight:bold;">|</span>i<span style="color:#006600; font-weight:bold;">|</span> 
      val, lbl = i.<span style="color:#9900CC;">strip</span>.<span style="color:#CC0066; font-weight:bold;">split</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#996600;">&quot; &quot;</span><span style="color:#006600; font-weight:bold;">&#41;</span>
      <span style="color:#0066ff; font-weight:bold;">@result</span><span style="color:#006600; font-weight:bold;">&#91;</span>lbl.<span style="color:#9900CC;">to_sym</span><span style="color:#006600; font-weight:bold;">&#93;</span> = val.<span style="color:#9900CC;">to_i</span>
    <span style="color:#9966CC; font-weight:bold;">end</span>
  <span style="color:#9966CC; font-weight:bold;">end</span>
&nbsp;
  <span style="color:#9966CC; font-weight:bold;">def</span> img
    <span style="color:#0000FF; font-weight:bold;">return</span> FAIL_IMG <span style="color:#9966CC; font-weight:bold;">if</span> <span style="color:#0066ff; font-weight:bold;">@result</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#ff3333; font-weight:bold;">:errors</span><span style="color:#006600; font-weight:bold;">&#93;</span>.<span style="color:#9900CC;">to_i</span> <span style="color:#006600; font-weight:bold;">&gt;</span> <span style="color:#006666;">0</span> <span style="color:#006600; font-weight:bold;">||</span> <span style="color:#0066ff; font-weight:bold;">@result</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#ff3333; font-weight:bold;">:failures</span><span style="color:#006600; font-weight:bold;">&#93;</span>.<span style="color:#9900CC;">to_i</span> <span style="color:#006600; font-weight:bold;">&gt;</span> <span style="color:#006666;">0</span> 
    <span style="color:#0000FF; font-weight:bold;">return</span> PEND_IMG <span style="color:#9966CC; font-weight:bold;">if</span> <span style="color:#0066ff; font-weight:bold;">@result</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#ff3333; font-weight:bold;">:pending</span><span style="color:#006600; font-weight:bold;">&#93;</span>.<span style="color:#9900CC;">to_i</span> <span style="color:#006600; font-weight:bold;">&gt;</span> <span style="color:#006666;">0</span> 
    <span style="color:#0000FF; font-weight:bold;">return</span> PASS_IMG
  <span style="color:#9966CC; font-weight:bold;">end</span>
&nbsp;
  <span style="color:#9966CC; font-weight:bold;">def</span> title
    pre = <span style="color:#0066ff; font-weight:bold;">@result</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#ff3333; font-weight:bold;">:type</span><span style="color:#006600; font-weight:bold;">&#93;</span> == <span style="color:#ff3333; font-weight:bold;">:spec</span> ? <span style="color:#996600;">&quot;Spec Tests&quot;</span> : <span style="color:#996600;">&quot;Unit Tests&quot;</span>
    <span style="color:#0000FF; font-weight:bold;">return</span> <span style="color:#996600;">&quot;#{pre} Failed:&quot;</span> <span style="color:#9966CC; font-weight:bold;">if</span> <span style="color:#0066ff; font-weight:bold;">@result</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#ff3333; font-weight:bold;">:errors</span><span style="color:#006600; font-weight:bold;">&#93;</span>.<span style="color:#9900CC;">to_i</span> <span style="color:#006600; font-weight:bold;">&gt;</span> <span style="color:#006666;">0</span> <span style="color:#006600; font-weight:bold;">||</span> <span style="color:#0066ff; font-weight:bold;">@result</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#ff3333; font-weight:bold;">:failures</span><span style="color:#006600; font-weight:bold;">&#93;</span>.<span style="color:#9900CC;">to_i</span> <span style="color:#006600; font-weight:bold;">&gt;</span> <span style="color:#006666;">0</span> 
    <span style="color:#0000FF; font-weight:bold;">return</span> <span style="color:#996600;">&quot;#{pre} Pending:&quot;</span> <span style="color:#9966CC; font-weight:bold;">if</span> <span style="color:#0066ff; font-weight:bold;">@result</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#ff3333; font-weight:bold;">:pending</span><span style="color:#006600; font-weight:bold;">&#93;</span>.<span style="color:#9900CC;">to_i</span> <span style="color:#006600; font-weight:bold;">&gt;</span> <span style="color:#006666;">0</span> 
    <span style="color:#0000FF; font-weight:bold;">return</span> <span style="color:#996600;">&quot;#{pre} Passed:&quot;</span>
  <span style="color:#9966CC; font-weight:bold;">end</span>
&nbsp;
  <span style="color:#9966CC; font-weight:bold;">def</span> to_s
    msg = <span style="color:#996600;">&quot;&quot;</span>
    msg <span style="color:#006600; font-weight:bold;">&lt;&lt;</span> <span style="color:#996600;">&quot;Examples: #{@result[:examples]}     &quot;</span> <span style="color:#9966CC; font-weight:bold;">if</span> <span style="color:#0066ff; font-weight:bold;">@result</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#ff3333; font-weight:bold;">:examples</span><span style="color:#006600; font-weight:bold;">&#93;</span>
    msg <span style="color:#006600; font-weight:bold;">&lt;&lt;</span> <span style="color:#996600;">&quot;Tests: #{@result[:tests]}     &quot;</span> <span style="color:#9966CC; font-weight:bold;">if</span> <span style="color:#0066ff; font-weight:bold;">@result</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#ff3333; font-weight:bold;">:tests</span><span style="color:#006600; font-weight:bold;">&#93;</span>
    msg <span style="color:#006600; font-weight:bold;">&lt;&lt;</span> <span style="color:#996600;">&quot;Assertions: #{@result[:assertions]}     &quot;</span> <span style="color:#9966CC; font-weight:bold;">if</span> <span style="color:#0066ff; font-weight:bold;">@result</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#ff3333; font-weight:bold;">:assertions</span><span style="color:#006600; font-weight:bold;">&#93;</span>
    msg <span style="color:#006600; font-weight:bold;">&lt;&lt;</span> <span style="color:#996600;">&quot;Pending: #{@result[:pending]}      &quot;</span> <span style="color:#9966CC; font-weight:bold;">if</span> <span style="color:#0066ff; font-weight:bold;">@result</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#ff3333; font-weight:bold;">:pending</span><span style="color:#006600; font-weight:bold;">&#93;</span>
    msg <span style="color:#006600; font-weight:bold;">&lt;&lt;</span> <span style="color:#996600;">&quot;Failures: #{@result[:failures]}     &quot;</span>
    msg <span style="color:#006600; font-weight:bold;">&lt;&lt;</span> <span style="color:#996600;">&quot;Errors: #{@result[:errors]}&quot;</span> <span style="color:#9966CC; font-weight:bold;">if</span> <span style="color:#0066ff; font-weight:bold;">@result</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#ff3333; font-weight:bold;">:errors</span><span style="color:#006600; font-weight:bold;">&#93;</span>
    msg
  <span style="color:#9966CC; font-weight:bold;">end</span>
&nbsp;
  <span style="color:#9966CC; font-weight:bold;">def</span> priority
    <span style="color:#0000FF; font-weight:bold;">return</span> <span style="color:#0066ff; font-weight:bold;">@priority</span> <span style="color:#006600; font-weight:bold;">||</span> <span style="color:#006666;">0</span>
  <span style="color:#9966CC; font-weight:bold;">end</span>
&nbsp;
  <span style="color:#9966CC; font-weight:bold;">def</span> stick
    <span style="color:#0000FF; font-weight:bold;">return</span> <span style="color:#996600;">&quot;&quot;</span>
  <span style="color:#9966CC; font-weight:bold;">end</span>
&nbsp;
  <span style="color:#9966CC; font-weight:bold;">def</span> notify
    cmd = <span style="color:#996600;">&quot;growlnotify -n autotest --image #{img} -p #{priority} -m '#{to_s}' #{title} #{stick}&quot;</span> 
    <span style="color:#996600;">`#{cmd}`</span>
  <span style="color:#9966CC; font-weight:bold;">end</span>
&nbsp;
<span style="color:#9966CC; font-weight:bold;">end</span>
&nbsp;
<span style="color:#9966CC; font-weight:bold;">module</span> <span style="color:#6666ff; font-weight:bold;">Autotest::Growl</span>
  Autotest.<span style="color:#9900CC;">add_hook</span> <span style="color:#ff3333; font-weight:bold;">:ran_command</span> <span style="color:#9966CC; font-weight:bold;">do</span> <span style="color:#006600; font-weight:bold;">|</span>at<span style="color:#006600; font-weight:bold;">|</span>
    AutoTestNotifier.<span style="color:#9900CC;">growl</span><span style="color:#006600; font-weight:bold;">&#40;</span>at.<span style="color:#9900CC;">results</span><span style="color:#006600; font-weight:bold;">&#41;</span>
  <span style="color:#9966CC; font-weight:bold;">end</span>
<span style="color:#9966CC; font-weight:bold;">end</span></pre></td></tr></table></div>

<p>This should take care for both the UnitTest and RSpec messages.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.furmanek.net/206/autogrowling-making-autotest-and-spectest-work-with-growl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rails, tests and code coverage</title>
		<link>http://www.furmanek.net/48/rails-testing-code-coverage/</link>
		<comments>http://www.furmanek.net/48/rails-testing-code-coverage/#comments</comments>
		<pubDate>Thu, 20 Nov 2008 16:50:36 +0000</pubDate>
		<dc:creator>Gregory Furmanek</dc:creator>
				<category><![CDATA[Ruby]]></category>
		<category><![CDATA[testing]]></category>
		<category><![CDATA[code coverage]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[rake]]></category>
		<category><![CDATA[rcov]]></category>

		<guid isPermaLink="false">http://www.furmanek.net/?p=48</guid>
		<description><![CDATA[&#8220;If it&#8217;s not tested assume it&#8217;s broken.&#8221;  This is one of the mantras in my company.  Sometimes it&#8217;s easier said then done.  If I always had to test everything I would be doing nothing but testing.  So I employ different techniques to keep me programming and the computer to test the [...]]]></description>
			<content:encoded><![CDATA[<p>&#8220;If it&#8217;s not tested assume it&#8217;s broken.&#8221;  This is one of the mantras in my company.  Sometimes it&#8217;s easier said then done.  If I always had to test everything I would be doing nothing but testing.  So I employ different techniques to keep me programming and the computer to test the code I write.</p>
<p>One of the nice things about Rails is that you have a whole array of tools to automate testing and at least one very nice tool to let you know what&#8217;s tested and what&#8217;s not.  Yes I am talking about Rcov.</p>
<p>Rcov has been &#8220;the bee&#8217;s knees&#8221; for code coverage awareness.  Recently I have noticed Rcov has been doing more work then expected.  When I ran the rcov command in a rails project it tested everything.  I mean everything, including gems installed on the system.</p>
<p>Since everything is just a bit too much for my project I started looking for a way to limit the output. It appears I had to use -x option to stop the code coverage tool from traversing the gems.  Here is the whole task:</p>
<pre>
desc 'Measures test coverage using rcov'
Rcov::RcovTask.new(:rcov) do |rcov|
  rcov.pattern    = "test/**/*_test.rb"
  rcov.rcov_opts  = [
    "-x 'gems/.*,rubygems/.*,rcov/.*'",
    "-T",
    "--rails" ]
  rcov.output_dir = "rcov/unified"
end
</pre>
<p>I hope this helps you.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.furmanek.net/48/rails-testing-code-coverage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
