Sha256: d3e550fc2a7580e44bbdf3b0be437e0701c46fe188dd0aebf6081f506bddfb95

Contents?: true

Size: 692 Bytes

Versions: 4

Compression:

Stored size: 692 Bytes

Contents

require File.expand_path(File.join(File.dirname(__FILE__), "helper"))

class VerbsTest < Test::Unit::TestCase
  def setup
    @agent = WWW::Mechanize.new
  end

  def test_put
    page = @agent.put('http://localhost/verb', { 'q' => 'foo' })
    assert_equal 1, @agent.history.length
    assert_equal('method: PUT', page.body)
  end

  def test_delete
    page = @agent.delete('http://localhost/verb', { 'q' => 'foo' })
    assert_equal 1, @agent.history.length
    assert_equal('method: DELETE', page.body)
  end

  def test_head
    page = @agent.head('http://localhost/verb', { 'q' => 'foo' })
    assert_equal 0, @agent.history.length
    assert_equal('method: HEAD', page.body)
  end
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
mechanize-ntlm-0.9.1 test/test_verbs.rb
mechanize-0.9.2 test/test_verbs.rb
mechanize-0.9.1 test/test_verbs.rb
mechanize-0.9.3 test/test_verbs.rb