up vote 2 down vote favorite
1
share [g+] share [fb]

In my views I use a helper that takes arbitrary HTML as a block:

<% some_block_helper do %>
  Some arbitrary HTML and ERB variables here.
  More HTML here.
<% end %>

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.

link|improve this question

0% accept rate
feedback

3 Answers

To add just a bit to what James said, I think something like this should work just fine:

describe SomeHelper do
  it 'should do something' do
    helper.some_block_helper { the_block_code }.should XXXX
  end
end
link|improve this answer
1  
how should the_block_code look like? – Bogdan Gusiev Sep 25 '09 at 9:46
feedback
  1. For a functional test, write a normal view spec and test the result.
  2. To unit test your helper, pass an arbitrary html input string to it directly.

If there's any other difficulty I'm missing, please comment?

link|improve this answer
Since the test is in Ruby and not in a template, it's not clear how to replicate the behavior of putting HTML outside of the ERB tags between do and end. – Peeja Apr 19 '11 at 16:13
feedback

Here's another example that expands on Cameron's answer

describe SomeHelper do
  it 'should do something' do
    content = lambda { "blah" }                                
    result  = helper.some_block_helper(&content)

    result.should include("blah")
    result.should XXX
  end
end
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.