Sha256: cc667d96a97b25eb3248666b3356a84d1ef432edf5d633945ebe8ca1787964d3
Contents?: true
Size: 823 Bytes
Versions: 56
Compression:
Stored size: 823 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 tests('Excon.delete').returns('DELETE') do Excon.delete('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 tests('connection.delete').returns('DELETE') do connection.delete.body end end end end
Version data entries
56 entries across 56 versions & 3 rubygems