mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* test/openssl/test_buffering.rb
* test/openssl/test_pkcs12.rb: Inherit from Test::Unit::TestCase instead of Mintest::Unit::TestCase. [ruby-core:37275] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32197 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
bda678dc5b
commit
914a4a025a
3 changed files with 8 additions and 3 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
Wed Jun 22 14:47:53 2011 Martin Bosslet <Martin.Bosslet@googlemail.com>
|
||||||
|
|
||||||
|
* test/openssl/test_buffering.rb
|
||||||
|
* test/openssl/test_pkcs12.rb: Inherit from Test::Unit::TestCase
|
||||||
|
instead of Mintest::Unit::TestCase. [ruby-core:37275]
|
||||||
|
|
||||||
Wed Jun 22 12:41:03 2011 Hiroshi Nakamura <nahi@ruby-lang.org>
|
Wed Jun 22 12:41:03 2011 Hiroshi Nakamura <nahi@ruby-lang.org>
|
||||||
|
|
||||||
* ext/openssl/ossl_ssl_session.c (ossl_ssl_session_to_der):
|
* ext/openssl/ossl_ssl_session.c (ossl_ssl_session_to_der):
|
||||||
|
|
|
@ -1,8 +1,7 @@
|
||||||
require_relative 'utils'
|
require_relative 'utils'
|
||||||
require 'stringio'
|
require 'stringio'
|
||||||
require 'minitest/unit'
|
|
||||||
|
|
||||||
class OpenSSL::TestBuffering < MiniTest::Unit::TestCase
|
class OpenSSL::TestBuffering < Test::Unit::TestCase
|
||||||
|
|
||||||
class IO
|
class IO
|
||||||
include OpenSSL::Buffering
|
include OpenSSL::Buffering
|
||||||
|
|
|
@ -3,7 +3,7 @@ require_relative "utils"
|
||||||
if defined?(OpenSSL)
|
if defined?(OpenSSL)
|
||||||
|
|
||||||
module OpenSSL
|
module OpenSSL
|
||||||
class TestPKCS12 < MiniTest::Unit::TestCase
|
class TestPKCS12 < Test::Unit::TestCase
|
||||||
include OpenSSL::TestUtils
|
include OpenSSL::TestUtils
|
||||||
|
|
||||||
def setup
|
def setup
|
||||||
|
|
Loading…
Reference in a new issue