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

Version Path
able-neo4j-1.0.0 vendor/bundle/jruby/1.9/gems/excon-0.45.4/tests/request_method_tests.rb
excon-0.49.0 tests/request_method_tests.rb
excon-0.48.0 tests/request_method_tests.rb
excon-0.47.0 tests/request_method_tests.rb
excon-0.46.0 tests/request_method_tests.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/excon-0.45.4/tests/request_method_tests.rb
excon-0.45.4 tests/request_method_tests.rb
vagrant-cloudstack-1.1.0 vendor/bundle/gems/excon-0.45.3/tests/request_method_tests.rb
excon-0.45.3 tests/request_method_tests.rb
excon-0.45.2 tests/request_method_tests.rb
excon-0.45.1 tests/request_method_tests.rb
excon-0.45.0 tests/request_method_tests.rb
excon-0.44.4 tests/request_method_tests.rb
excon-0.44.3 tests/request_method_tests.rb
excon-0.44.2 tests/request_method_tests.rb
excon-0.44.1 tests/request_method_tests.rb
excon-0.44.0 tests/request_method_tests.rb
excon-0.43.0 tests/request_method_tests.rb
excon-0.42.1 tests/request_method_tests.rb
excon-0.42.0 tests/request_method_tests.rb