Project

General

Profile

Feature #5373 ยป net.smtp.rb.rset.patch

drbrain (Eric Hodel), 05/08/2012 08:31 AM

View differences:

lib/net/smtp.rb (working copy)
public
def rset
getok('RSET')
end
def starttls
getok('STARTTLS')
end
test/net/smtp/test_smtp.rb (working copy)
require 'net/smtp'
require 'stringio'
require 'minitest/autorun'
module Net
class TestSMTP < MiniTest::Unit::TestCase
class FakeSocket
def initialize out = "250 OK\n"
@write_io = StringIO.new
@read_io = StringIO.new out
end
def writeline line
@write_io.write "#{line}\r\n"
end
def readline
line = @read_io.gets
raise 'ran out of input' unless line
line.chop
end
end
def test_esmtp
smtp = Net::SMTP.new 'localhost', 25
assert smtp.esmtp
......
assert_equal 'omg', smtp.esmtp
assert_equal 'omg', smtp.esmtp?
end
def test_rset
smtp = Net::SMTP.new 'localhost', 25
smtp.instance_variable_set :@socket, FakeSocket.new
assert smtp.rset
end
end
end
    (1-1/1)