Sha256: 92b58f66c62c5283870a9f1957598dbed47701fd06d83a99ef78a200fe79582d

Contents?: true

Size: 968 Bytes

Versions: 11

Compression:

Stored size: 968 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

      tests('not modifies path argument').returns('path') do
        path = 'path'
        connection.get(:path => path)
        path
      end

    end

  end

end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
excon-0.30.0 tests/request_method_tests.rb
excon-0.29.0 tests/request_method_tests.rb
excon-0.28.0 tests/request_method_tests.rb
excon-0.27.6 tests/request_method_tests.rb
excon-0.27.5 tests/request_method_tests.rb
excon-0.27.4 tests/request_method_tests.rb
excon-0.27.3 tests/request_method_tests.rb
excon-0.27.2 tests/request_method_tests.rb
excon-0.27.1 tests/request_method_tests.rb
excon-0.27.0 tests/request_method_tests.rb
excon-0.26.0 tests/request_method_tests.rb