Displaying 1 result from an estimated 1 matches for "s2testpath".
Did you mean:
  s2_test_path
  
2007 Feb 06
3
Using any_instance with Rails to make sure the right thing is saved?
I''d like to test that an object with the correct attributes is saved,
something like:
  def test_create_without_existing_suite
    this = self
    w = Annotation.any_instance.expects(:save).with do |x|
      this.assert_equal ''fnord'',
some_way_get_the_name_of_the_receiver_of_save
      true
    end
    w.returns true
  end
But the object is created inside the method