aboutsummaryrefslogtreecommitdiffstats
path: root/lib/net
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2019-11-07 17:09:22 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2019-11-07 17:09:22 +0900
commit3c252651e1ee28d015dbe1648dfdf0140232b733 (patch)
treeb0d4fe22b3a0974cea0cfd9d71d95529c6c3df37 /lib/net
parentc916f9600b39e9363af782cb4dddef36264bd82b (diff)
downloadruby-3c252651e1ee28d015dbe1648dfdf0140232b733.tar.gz
Fixed test failure related Net::Protocol
Diffstat (limited to 'lib/net')
-rw-r--r--lib/net/pop/version.rb3
-rw-r--r--lib/net/smtp/version.rb3
2 files changed, 4 insertions, 2 deletions
diff --git a/lib/net/pop/version.rb b/lib/net/pop/version.rb
index 4857d4de62..ef5c295cc3 100644
--- a/lib/net/pop/version.rb
+++ b/lib/net/pop/version.rb
@@ -1,5 +1,6 @@
module Net
- class POP3
+ class Protocol; end
+ class POP3 < Protocol
VERSION = "0.1.0"
end
end
diff --git a/lib/net/smtp/version.rb b/lib/net/smtp/version.rb
index e134ec00e3..7f5aaaa6db 100644
--- a/lib/net/smtp/version.rb
+++ b/lib/net/smtp/version.rb
@@ -1,5 +1,6 @@
module Net
- class SMTP
+ class Protocol; end
+ class SMTP < Protocol
VERSION = "0.1.0"
end
end