I used the approach details in Railscast espisode #197 on how to add dynamic input fields, but I'm not sure how to write an RSpec test for it. Suggestions?

def link_to_add_fields(name, f, association, path, *args)
  new_object = f.object.class.reflect_on_association(association).klass.new
  fields = f.semantic_fields_for(association, new_object, :child_index => "new_#{association}") do |builder|
    render(path + association.to_s.singularize + "_fields", :builder => builder)
  end
  link_to_function(name, "add_fields(this, \"#{association}\", \"#{escape_javascript(fields.html_safe)}\")", *args)
end
link|improve this question

64% accept rate
feedback

1 Answer

Look into rspec request specs (or cucumber) because you seek to test the behaviour of a certain function. This way you don't have to concern yourself with the underlying implementation of methods.

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.