diff options
author | hsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2015-12-09 00:25:34 +0000 |
---|---|---|
committer | hsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2015-12-09 00:25:34 +0000 |
commit | 6a15a37f0b8f03c98f4b47ec777efa1ae75d7526 (patch) | |
tree | 597c62ffb9de0f50b4f85f4da9d47fb8d306c675 | |
parent | a78023c1180b496a60b21b5328dd5736df60a65d (diff) |
* 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
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | test/net/smtp/test_response.rb | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +Wed Dec 9 09:25:29 2015 SHIBATA Hiroshi <[email protected]> + + * test/net/smtp/test_response.rb: use Test::Unit. We should use Test::Unit + without rubygems and rdoc. + Wed Dec 9 06:26:23 2015 Colin Kelley <[email protected]> * lib/uri/generic.rb: enable frozen_string_literal diff --git a/test/net/smtp/test_response.rb b/test/net/smtp/test_response.rb index e7011e0fb5..cfd90b18ec 100644 --- a/test/net/smtp/test_response.rb +++ b/test/net/smtp/test_response.rb @@ -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") |