Displaying 3 results from an estimated 3 matches for "_controller_test".
Did you mean:
controller_test
2009 Apr 06
9
setup method in functional tests and instance variables
I have the following in my functional test file.
class UserControllerTest < ActionController::TestCase
fixtures :users
def setup
@controller = UserController.new
@request = ActionController::TestRequest.new
@response = ActionController::TestResponse.new
@invalid_user = user(:invalid_user)
@valid_user = users(:valid_user)
end
def test_login_success
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
...:99:in
`assign_parameters''
/usr/local/lib/ruby/gems/1.8/gems/actionpack-1.12.1/lib/action_controller/test_process.rb:358:in
`process''
/usr/local/lib/ruby/gems/1.8/gems/actionpack-1.12.1/lib/action_controller/test_process.rb:336:in
`post''
test/functional/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....