Sha256: 075b403ee0c1f74f359eee2903f6844ccf3c1e765311937ae277ed32d24f640e

Contents?: true

Size: 639 Bytes

Versions: 3

Compression:

Stored size: 639 Bytes

Contents

# frozen_string_literal: true

require "test_helper"
require "csv"

class CustomResponseParserTest < Minitest::Test
  setup do
    parser = Class.new do
      def self.match?(content_type)
        content_type.include?("csv")
      end

      def self.load(source)
        CSV.parse(source)
      end
    end

    Aitch::ResponseParser.prepend(:csv, parser)
  end

  test "returns csv" do
    register_uri(:get, "http://example.org/file.csv", body: "1,2,3", content_type: "text/csv")
    response = Aitch.get("http://example.org/file.csv")

    assert_instance_of Array, response.data
    assert_equal [%w[1 2 3]], response.data
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
aitch-2.0.0 test/aitch/response/custom_response_parser_test.rb
aitch-1.2.2 test/aitch/response/custom_response_parser_test.rb
aitch-1.2.1 test/aitch/response/custom_response_parser_test.rb