If I enable test mode for a (recurring) charge in my Shopify App during beta
charge = ShopifyAPI::RecurringApplicationCharge.create(:name => 'myplan',
:price => 4.99, :return_url => 'http://yourapp.com/charges/confirm',
:test => true)
what should I do when the App goes out of beta? Can I just update the existing (recurring) charge, or do I have to create a new (recurring) charge?