summaryrefslogtreecommitdiff
path: root/test/net/smtp
diff options
context:
space:
mode:
authorhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-09 00:25:34 +0000
committerhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-09 00:25:34 +0000
commit6a15a37f0b8f03c98f4b47ec777efa1ae75d7526 (patch)
tree597c62ffb9de0f50b4f85f4da9d47fb8d306c675 /test/net/smtp
parenta78023c1180b496a60b21b5328dd5736df60a65d (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
Diffstat (limited to 'test/net/smtp')
-rw-r--r--test/net/smtp/test_response.rb4
1 files changed, 2 insertions, 2 deletions
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")