如果我在测试期间在我的 Shopify 应用中为(定期)收费启用测试模式
charge = ShopifyAPI::RecurringApplicationCharge.create(:name => 'myplan',
:price => 4.99, :return_url => 'http://yourapp.com/charges/confirm',
:test => true)
当应用程序退出测试版时,我该怎么办?我可以只更新现有的(经常性)费用,还是必须创建新的(经常性)费用?