aboutsummaryrefslogtreecommitdiffstats
path: root/test/net/smtp/test_smtp.rb
diff options
context:
space:
mode:
authorshugo <shugo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-11-19 02:37:39 +0000
committershugo <shugo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-11-19 02:37:39 +0000
commitb62f8c909409143467be009d0ad2274fc830bfed (patch)
tree03e327b53fdb28edfe4657e4a887c90fe7d3c729 /test/net/smtp/test_smtp.rb
parentbb43a317882007e024ce0cdb203e09f040b7cb1a (diff)
downloadruby-b62f8c909409143467be009d0ad2274fc830bfed.tar.gz
Move certificates to test/net/fixtures/.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56836 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/net/smtp/test_smtp.rb')
-rw-r--r--test/net/smtp/test_smtp.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/net/smtp/test_smtp.rb b/test/net/smtp/test_smtp.rb
index bf25af5b58..01b8ae504c 100644
--- a/test/net/smtp/test_smtp.rb
+++ b/test/net/smtp/test_smtp.rb
@@ -5,9 +5,9 @@ require 'test/unit'
module Net
class TestSMTP < Test::Unit::TestCase
- CA_FILE = File.expand_path("../imap/cacert.pem", __dir__)
- SERVER_KEY = File.expand_path("../imap/server.key", __dir__)
- SERVER_CERT = File.expand_path("../imap/server.crt", __dir__)
+ CA_FILE = File.expand_path("../fixtures/cacert.pem", __dir__)
+ SERVER_KEY = File.expand_path("../fixtures/server.key", __dir__)
+ SERVER_CERT = File.expand_path("../fixtures/server.crt", __dir__)
class FakeSocket
attr_reader :write_io