How do I test Rails block helpers with rSpec - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T04:58:40Z http://stackoverflow.com/feeds/question/197164 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/197164/how-do-i-test-rails-block-helpers-with-rspec 0 How do I test Rails block helpers with rSpec ismaSan 2008-10-13T10:05:10Z 2008-10-30T04:43:15Z <p>In my views I use a helper that takes arbitrary HTML as a block:</p> <pre><code>&lt;% some_block_helper do %&gt; Some arbitrary HTML and ERB variables here. More HTML here. &lt;% end %&gt; </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#248778 1 Answer by James Baker for How do I test Rails block helpers with rSpec James Baker 2008-10-29T23:19:01Z 2008-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#249295 3 Answer by Cameron Booth for How do I test Rails block helpers with rSpec Cameron Booth 2008-10-30T04:43:15Z 2008-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>