From 0a2392a50aaffcb751aaf9ba1f0d5dccab6a6206 Mon Sep 17 00:00:00 2001 From: tenderlove Date: Wed, 22 Dec 2010 23:13:49 +0000 Subject: * lib/net/smtp.rb: refactoring Net::SMTP#esmtp= to use an attr_accessor git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30296 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/net/smtp/test_smtp.rb | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 test/net/smtp/test_smtp.rb (limited to 'test/net/smtp') diff --git a/test/net/smtp/test_smtp.rb b/test/net/smtp/test_smtp.rb new file mode 100644 index 0000000000..8af6a37d53 --- /dev/null +++ b/test/net/smtp/test_smtp.rb @@ -0,0 +1,16 @@ +require 'net/smtp' +require 'minitest/autorun' + +module Net + class TestSMTP < MiniTest::Unit::TestCase + def test_esmtp + smtp = Net::SMTP.new 'localhost', 25 + assert smtp.esmtp + assert smtp.esmtp? + + smtp.esmtp = 'omg' + assert_equal 'omg', smtp.esmtp + assert_equal 'omg', smtp.esmtp? + end + end +end -- cgit v1.2.3