1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* test/net/smtp/test_response.rb: use Test::Unit. We should use Test::Unit

without rubygems and rdoc.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52985 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
hsbt 2015-12-09 00:25:34 +00:00
parent a78023c118
commit 6a15a37f0b
2 changed files with 7 additions and 2 deletions

View file

@ -1,9 +1,9 @@
require 'net/smtp'
require 'minitest/autorun'
require 'test/unit'
module Net
class SMTP
class TestResponse < MiniTest::Unit::TestCase
class TestResponse < Test::Unit::TestCase
def test_capabilities
res = Response.parse("250-ubuntu-desktop\n250-PIPELINING\n250-SIZE 10240000\n250-VRFY\n250-ETRN\n250-STARTTLS\n250-ENHANCEDSTATUSCODES\n250 DSN\n")