Sha256: a5a703ec5c216b649c1023db0758c498affb4e2d0b96639f14640588d47db9e9
Contents?: true
Size: 1.29 KB
Versions: 1
Compression:
Stored size: 1.29 KB
Contents
require 'test_helper' class DiscoApp::AppInstalledJobTest < ActionController::TestCase include ActiveJob::TestHelper def setup @shop = disco_app_shops(:widget_store) stub_request(:get, "#{@shop.admin_url}/webhooks.json").to_return(status: 200, body: api_fixture('widget_store/webhooks').to_json) stub_request(:post, "#{@shop.admin_url}/webhooks.json").to_return(status: 200) stub_request(:get, "#{@shop.admin_url}/shop.json").to_return(status: 200, body: api_fixture('widget_store/shop').to_json) end def teardown @shop = nil WebMock.reset! end test 'app installed job performs shop update job' do # Assert the main install job can be enqueued and performed. perform_enqueued_jobs do DiscoApp::AppInstalledJob.perform_later(@shop.shopify_domain) end # Assert the update shop job was performed. @shop.reload assert_equal 'United States', @shop.country_name end test 'app installed job automatically subscribes stores to the correct default plan' do @shop.current_subscription.destroy perform_enqueued_jobs do DiscoApp::AppInstalledJob.perform_later(@shop.shopify_domain) end # Assert the shop was subscribed to the development plan. assert_equal disco_app_plans(:development), @shop.current_subscription.plan end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
disco_app-0.8.8 | test/jobs/disco_app/app_installed_job_test.rb |