mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Fixed test failure related Net::Protocol
This commit is contained in:
parent
c916f9600b
commit
3c252651e1
2 changed files with 4 additions and 2 deletions
|
@ -1,5 +1,6 @@
|
|||
module Net
|
||||
class POP3
|
||||
class Protocol; end
|
||||
class POP3 < Protocol
|
||||
VERSION = "0.1.0"
|
||||
end
|
||||
end
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
module Net
|
||||
class SMTP
|
||||
class Protocol; end
|
||||
class SMTP < Protocol
|
||||
VERSION = "0.1.0"
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue