ok, solved it myself using an integration test like this:
assert_difference('User.count') do
xml = "<user>
<login>phibo</login>
<email>[email protected]</email>
<password>somesecret</password>
</user>"
post 'api/users/register', xml, :content_type => 'application/
xml'
end
assert_response :created
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby
on Rails: Talk" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---