Revert "PROTON-755: Update Ruby smoke tests to use Minitest" This reverts commit 1d3a13863117cfca5aef56244b20773760428796.
Project: http://git-wip-us.apache.org/repos/asf/qpid-proton/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton/commit/2276c097 Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/2276c097 Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/2276c097 Branch: refs/heads/examples Commit: 2276c09715683ace9e761a6d5aab5b74add3b7b9 Parents: b13222b Author: Rafael Schloming <[email protected]> Authored: Sat Nov 22 05:51:13 2014 -0500 Committer: Rafael Schloming <[email protected]> Committed: Sat Nov 22 06:03:01 2014 -0500 ---------------------------------------------------------------------- tests/ruby/proton-test | 2 +- tests/ruby/proton_tests/interop.rb | 4 ++-- tests/ruby/proton_tests/smoke.rb | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/2276c097/tests/ruby/proton-test ---------------------------------------------------------------------- diff --git a/tests/ruby/proton-test b/tests/ruby/proton-test index acb0d43..748e6f0 100755 --- a/tests/ruby/proton-test +++ b/tests/ruby/proton-test @@ -1,5 +1,5 @@ #!/usr/bin/env ruby -require 'minitest/autorun' +require 'test/unit' require 'proton_tests/interop.rb' require 'proton_tests/smoke.rb' http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/2276c097/tests/ruby/proton_tests/interop.rb ---------------------------------------------------------------------- diff --git a/tests/ruby/proton_tests/interop.rb b/tests/ruby/proton_tests/interop.rb index 21d92d9..e14cba1 100755 --- a/tests/ruby/proton_tests/interop.rb +++ b/tests/ruby/proton_tests/interop.rb @@ -1,6 +1,6 @@ #!/usr/bin/env ruby -require 'minitest/autorun' +require 'test/unit' require 'qpid_proton' if ((RUBY_VERSION.split(".").map {|x| x.to_i} <=> [1, 9]) < 0) @@ -12,7 +12,7 @@ if ((RUBY_VERSION.split(".").map {|x| x.to_i} <=> [1, 9]) < 0) end end -class InteropTest < Minitest::Test +class InteropTest < Test::Unit::TestCase Data = Qpid::Proton::Data Message = Qpid::Proton::Message http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/2276c097/tests/ruby/proton_tests/smoke.rb ---------------------------------------------------------------------- diff --git a/tests/ruby/proton_tests/smoke.rb b/tests/ruby/proton_tests/smoke.rb index a382a0b..b9265e8 100644 --- a/tests/ruby/proton_tests/smoke.rb +++ b/tests/ruby/proton_tests/smoke.rb @@ -1,9 +1,9 @@ #!/usr/bin/env ruby -require 'minitest/autorun' +require 'test/unit' require 'qpid_proton' -class SmokeTest < Minitest::Test +class SmokeTest < Test::Unit::TestCase Messenger = Qpid::Proton::Messenger Message = Qpid::Proton::Message --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
