Displaying 3 results from an estimated 3 matches for "approproate".
Did you mean:
appropriate
2007 May 25
4
SVN display patch
Is someone on the core teams going to take responsibility for reviewing and
(if approproate) merging this?
--
<a href="http://www.catb.org/~esr/">Eric S. Raymond</a>
2006 May 05
3
posting xml in functional test
Hello,
I''m trying to write a functional test for a simple CRUD controller which
accepts / emits xml in a REST- like fashion. However the following code
won''t work for me - an exception is generated
def test_create
post :create, ''<person><name>john</name></person>'',
2006 May 06
0
RE: Rails Digest, Vol 20, Issue 156
...nal/person _controller_test.rb:21:in `test_person''
> I''m not sure how to fix it but I believe you stuck that xml in the post
query string, not the post body.
I agree, that looks likely. Can someone tell me how to add data to the
post body, or point me in the direction of the approproate docs ?
thanks.
>* Hello,
*>*
*>* I''m trying to write a functional test for a simple CRUD controller which
*>* accepts / emits xml in a REST- like fashion. However the following code
*>* won''t work for me - an exception is generated
*>*
*>* def test_create
*&...