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?