Sha256: ea6ff3b77fa283fcdf6f76ca74dc12bcc5d2b75a38de8f3acd7ec73b0298ca7e
Contents?: true
Size: 992 Bytes
Versions: 58
Compression:
Stored size: 992 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 = nil tests('connection.get').returns('GET') do connection = Excon.new('http://localhost:9292') connection.get.body end tests('connection.post').returns('POST') do connection.post.body end tests('connection.delete').returns('DELETE') do connection.delete.body end tests('not modifies path argument').returns('path') do path = 'path' connection.get(:path => path) path end end end end
Version data entries
58 entries across 56 versions & 4 rubygems