Sha256: 05357968c87977c1e4336d89ed539974880e4abf4dccfa33620e0670edb28763

Contents?: true

Size: 525 Bytes

Versions: 42

Compression:

Stored size: 525 Bytes

Contents

module DiscoApp::Test
  module ShopifyAPI

    def stub_api_request(method, endpoint, fixture_name)
      if method == :get
        stub_request(method, endpoint)
          .to_return(status: 200, body: api_fixture("#{fixture_name}_response").to_json)
      elsif method == :post or method == :put
        stub_request(method, endpoint)
          .with(body: api_fixture("#{fixture_name}_request").to_json)
          .to_return(status: 201, body: api_fixture("#{fixture_name}_response").to_json)
      end
    end

  end
end

Version data entries

42 entries across 42 versions & 1 rubygems

Version Path
disco_app-0.12.6 test/support/test_shopify_api.rb
disco_app-0.12.7 test/support/test_shopify_api.rb
disco_app-0.13.0 test/support/test_shopify_api.rb
disco_app-0.13.1 test/support/test_shopify_api.rb
disco_app-0.13.2 test/support/test_shopify_api.rb
disco_app-0.13.3 test/support/test_shopify_api.rb
disco_app-0.13.4 test/support/test_shopify_api.rb
disco_app-0.13.5 test/support/test_shopify_api.rb
disco_app-0.13.6 test/support/test_shopify_api.rb
disco_app-0.13.7 test/support/test_shopify_api.rb
disco_app-0.13.8 test/support/test_shopify_api.rb
disco_app-0.14.1 test/support/test_shopify_api.rb
disco_app-0.14.2 test/support/test_shopify_api.rb
disco_app-0.15.0 test/support/test_shopify_api.rb
disco_app-0.16.0 test/support/test_shopify_api.rb
disco_app-0.14.4 test/support/test_shopify_api.rb
disco_app-0.14.3 test/support/test_shopify_api.rb
disco_app-0.16.1 test/support/test_shopify_api.rb
disco_app-0.15.2 test/support/test_shopify_api.rb
disco_app-0.12.7.pre.puma.pre.3 test/support/test_shopify_api.rb