Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've managed to post data to my rails app using the following command:

curl -v -u apitest:apitest -H "Accept: application/json" -H "Content-Type: 
application/json" -X POST -d '{"user":{"name":"json_api_test_user", 
"email":"json_test@example.com", "password":"apitest", 
"password_confirmation":"apitest"}}' localhost:3000/users

But I'd like to be able to confirm this works without actually saving the entry in the database (this way I can provide the command for testing without creating a new user every time we use it). Is this possible?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.