How do I test Rails block helpers with rSpec - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T04:58:40Zhttp://stackoverflow.com/feeds/question/197164http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/197164/how-do-i-test-rails-block-helpers-with-rspec0How do I test Rails block helpers with rSpecismaSan2008-10-13T10:05:10Z2008-10-30T04:43:15Z
<p>In my views I use a helper that takes arbitrary HTML as a block:</p>
<pre><code><% some_block_helper do %>
Some arbitrary HTML and ERB variables here.
More HTML here.
<% end %>
</code></pre>
<p>My helper does a bunch of things to the passed block of HTML before rendering it back to the view (Markdown and other formatting). I would like to know what are the cleanest ways of testing the result of the helper call in rSpec, if any. I've found a few examples that muck about with private methods of ERB but that seems a bit brittle and hard to read.</p>
http://stackoverflow.com/questions/197164/how-do-i-test-rails-block-helpers-with-rspec/248778#2487781Answer by James Baker for How do I test Rails block helpers with rSpecJames Baker2008-10-29T23:19:01Z2008-10-29T23:19:01Z<ol>
<li>For a functional test, write a normal <a href="http://rspec.info/documentation/rails/writing/views.html" rel="nofollow">view spec</a> and test the result.</li>
<li>To unit test your <a href="http://rspec.info/documentation/rails/writing/helpers.html" rel="nofollow">helper</a>, pass an arbitrary html input string to it directly.</li>
</ol>
<p>If there's any other difficulty I'm missing, please comment?</p>
http://stackoverflow.com/questions/197164/how-do-i-test-rails-block-helpers-with-rspec/249295#2492953Answer by Cameron Booth for How do I test Rails block helpers with rSpecCameron Booth2008-10-30T04:43:15Z2008-10-30T04:43:15Z<p>To add just a bit to what James said, I think something like this should work just fine:</p>
<pre><code>describe SomeHelper do
it 'should do something' do
helper.some_block_helper { the_block_code }.should XXXX
end
end
</code></pre>