Yes, and I added my own customizations back in.&nbsp; Other than helper methods, I have extended the Spec::Rails::Runner thusly:<br><br>module Spec<br>&nbsp; module Rails<br>&nbsp;&nbsp;&nbsp; module Runner<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; class EvalContext &lt; Test::Unit::TestCase
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; self.use_transactional_fixtures = true<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; self.use_instantiated_fixtures&nbsp; = false<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; self.fixture_path = RAILS_ROOT + &#39;/spec/fixtures&#39;<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; # You can set up your global fixtures here, or you
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; # can do it in individual contexts using &quot;fixtures :table_a, table_b&quot;.<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; #<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; #self.global_fixtures = :table_a, :table_b<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; # for breakpoint support<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; require &#39;active_support/breakpoint&#39;
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; include Breakpoint<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; include HpricotSpecHelper<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; end<br>&nbsp;&nbsp;&nbsp; end<br>&nbsp; end<br>end<br><br>Is there something that jumps out at you?<br><br><div><span class="gmail_quote">On 3/15/07, <b class="gmail_sendername">
David Chelimsky</b> &lt;<a href="mailto:dchelimsky@gmail.com">dchelimsky@gmail.com</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
spec/spec_helper.rb has changed. Did you run script/generate rspec?<br><br>On 3/15/07, Chris Hoffman &lt;<a href="mailto:bosshoff@gmail.com">bosshoff@gmail.com</a>&gt; wrote:<br>&gt; Hello,<br>&gt;&nbsp;&nbsp; I have recently upgraded to the 
0.8.2 release of rSpec, and I am receiving<br>&gt; the following message with each view spec execution:<br>&gt;<br>&gt; WARNING:&nbsp;&nbsp;there is no transaction in progress<br>&gt;<br>&gt; I have upgraded the rspec_on_rails plugin as well, and both the model and
<br>&gt; controller tests are working flawlessly.&nbsp;&nbsp;Is there some simple step I<br>&gt; missed?&nbsp;&nbsp;thanks for the input.<br>&gt;<br>&gt; -Chris<br>&gt;<br>&gt; _______________________________________________<br>&gt; rspec-users mailing list
<br>&gt; <a href="mailto:rspec-users@rubyforge.org">rspec-users@rubyforge.org</a><br>&gt; <a href="http://rubyforge.org/mailman/listinfo/rspec-users">http://rubyforge.org/mailman/listinfo/rspec-users</a><br>&gt;<br>_______________________________________________
<br>rspec-users mailing list<br><a href="mailto:rspec-users@rubyforge.org">rspec-users@rubyforge.org</a><br><a href="http://rubyforge.org/mailman/listinfo/rspec-users">http://rubyforge.org/mailman/listinfo/rspec-users</a>
<br></blockquote></div><br>