faraday/test/response_middleware_test.rb
2010-01-12 17:03:34 -08:00

22 lines
668 B
Ruby

require File.expand_path(File.join(File.dirname(__FILE__), 'helper'))
class ResponseMiddlewareTest < Faraday::TestCase
describe "parsing json" do
[:yajl, :rails_json].each do |key|
parser = Faraday::Response.lookup_module(key)
next if !parser.loaded?
it "uses #{parser}" do
@connection = Faraday::Connection.new do |b|
b.adapter :test do |stub|
stub.get('json') { [200, {'Content-Type' => 'text/html'}, "[1,2,3]"] }
end
b.use parser
end
response = @connection.get('json')
assert response.success?
assert_equal [1,2,3], response.body
end
end
end
end