Sha256: a22070df464ea47c77e5493f69bdedbb681095dddba779067f4ccee3fe16247b

Contents?: true

Size: 636 Bytes

Versions: 10

Compression:

Stored size: 636 Bytes

Contents

#
# Testing rufus-verbs
#
# jmettraux@gmail.com
#
# Mon Jan 14 00:07:38 JST 2008
#

require 'test/unit'
require 'testbase'

require 'rufus/verbs'


class HttpsTest < Test::Unit::TestCase
    include TestBaseMixin

    include Rufus::Verbs

    def setup
        # no need for an items server
    end

    def teardown
    end

    def test_0

        res = expect(
            200, 
            nil, 
            get(:uri => "http://jmettraux.wordpress.com/2006/03/31/cvs-down/"))

        #res.each_header do |h|
        #    p h
        #end

        #puts res.body
        assert res.body.match "^<!DOCTYPE html PUBLIC"
    end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
rufus-verbs-0.3 test/https_test.rb
rufus-verbs-0.2 test/https_test.rb
rufus-verbs-0.7 test/https_test.rb
rufus-verbs-0.10 test/https_test.rb
rufus-verbs-0.6 test/https_test.rb
rufus-verbs-0.5 test/https_test.rb
rufus-verbs-0.1 test/https_test.rb
rufus-verbs-0.8 test/https_test.rb
rufus-verbs-0.4 test/https_test.rb
rufus-verbs-0.9 test/https_test.rb