If running the new Gravity Forms add-on for Easy Digital Downloads, and don't have a gateway hooked up yet, you can drop this in to return all submissions successful while testing.
<?php
add_filter('edd_gf_default_status','return_all_complete');
function return_all_complete(){
return 'publish';
}