How to spec within a block?

I want to mock to Model.to_xml but not his block. How to do it?

Here is what I have (sorry for the formatting)

  output = @detenteur.to_xml( :skip_types => false, :skip_instruct

=> true, :dasherize => false, :only => [:inte_no] ) do |xml_detenteur|
p xml_detenteur.intervenant_adresses.class.to_s
xml_detenteur.intervenant_adresses do
p “INTERVENANT ADRESSES”
get_object_xml( @detenteur.intervenant_adresses,
@detenteur.intervenant_adresses.obtenir_adresses_vigueur, {:builder =>
xml_detenteur, :skip_instruct => true, :skip_types => false,
:dasherize => false, :except => [:inte_no]})
end
end

So I want to run specs within some blocks like that.

Any recipes?

Thank you

Rémi

On Sun, Feb 8, 2009 at 6:44 AM, Remi G. [email protected]
wrote:

      get_object_xml( @detenteur.intervenant_adresses,

Thank you

I’m not sure I understand your goal here. Can you show us what the
spec you’d like to be able to write?

On 08/02/2009, at 7:44 AM, Remi G. wrote:

      p "INTERVENANT ADRESSES"

Thank you

Rémi

Hi Rémi. If you show us what you’ve written so far, we can give you
some tips.

Cheers,
Nick