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
excon-0.41.0 tests/request_method_tests.rb
excon-0.40.0 tests/request_method_tests.rb
excon-0.39.6 tests/request_method_tests.rb
excon-0.39.5 tests/request_method_tests.rb
excon-0.39.4 tests/request_method_tests.rb
excon-0.39.3 tests/request_method_tests.rb
excon-0.39.2 tests/request_method_tests.rb
excon-0.39.1 tests/request_method_tests.rb
excon-0.39.0 tests/request_method_tests.rb
excon-0.38.0 tests/request_method_tests.rb
excon-0.37.0 tests/request_method_tests.rb
excon-0.36.0 tests/request_method_tests.rb
excon-0.35.0 tests/request_method_tests.rb
excon-0.34.0 tests/request_method_tests.rb
excon-0.33.0 tests/request_method_tests.rb
excon-0.32.1 tests/request_method_tests.rb
excon-0.32.0 tests/request_method_tests.rb
excon-0.31.0 tests/request_method_tests.rb