Sha256: c66ef81130ae667aa0acfc365afd4c33411aed51c4b2d3de0e832d48facfdf4f
Contents?: true
Size: 616 Bytes
Versions: 12
Compression:
Stored size: 616 Bytes
Contents
Shindo.tests('Excon request methods') do with_rackup('request_methods.ru') do tests 'one-offs' do tests('Excon.get').returns('GET') do Excon.get('http://localhost:9292').body end tests('Excon.post').returns('POST') do Excon.post('http://localhost:9292').body end end tests 'with a connection object' do connection = Excon.new('http://localhost:9292') tests('connection.get').returns('GET') do connection.get.body end tests('connection.post').returns('POST') do connection.post.body end end end end
Version data entries
12 entries across 12 versions & 1 rubygems