| 123456789101112131415161718192021222324 | # frozen_string_literal: truerequire 'test_helper'class WebhookTest < Test::Unit::TestCase  test 'create should create a webhook' do    fake('webhooks', method: :post, status: 201, body: load_fixture('webhook'))    webhook = ShopifyAPI::Webhook.create(      address: "http://www.yoloship.it/webhook", topic: "orders/create", format: "json"    )    assert_equal("http://www.yoloship.it/webhook", webhook.address)  end  test 'get should retrieve a webhook' do    fake('webhooks/123456', method: :get, status: 200, body: load_fixture('webhook'))    webhook = ShopifyAPI::Webhook.find(123456)    assert_equal("http://www.yoloship.it/webhook", webhook.address)  end  test 'find all should return all webhooks' do    fake('webhooks', method: :get, status: 200, body: load_fixture('webhooks'))    webhook = ShopifyAPI::Webhook.all    assert_equal(123456, webhook.first.id)  endend
 |