PROTON-755: Update Ruby smoke tests to use Minitest

The old test framework module names have changed.


Project: http://git-wip-us.apache.org/repos/asf/qpid-proton/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton/commit/1d3a1386
Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/1d3a1386
Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/1d3a1386

Branch: refs/heads/examples
Commit: 1d3a13863117cfca5aef56244b20773760428796
Parents: b4e06d3
Author: Darryl L. Pierce <[email protected]>
Authored: Thu Nov 20 13:42:41 2014 -0500
Committer: Darryl L. Pierce <[email protected]>
Committed: Thu Nov 20 13:45:06 2014 -0500

----------------------------------------------------------------------
 tests/ruby/proton-test             | 2 +-
 tests/ruby/proton_tests/interop.rb | 4 ++--
 tests/ruby/proton_tests/smoke.rb   | 8 ++++----
 3 files changed, 7 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/1d3a1386/tests/ruby/proton-test
----------------------------------------------------------------------
diff --git a/tests/ruby/proton-test b/tests/ruby/proton-test
index 748e6f0..acb0d43 100755
--- a/tests/ruby/proton-test
+++ b/tests/ruby/proton-test
@@ -1,5 +1,5 @@
 #!/usr/bin/env ruby
 
-require 'test/unit'
+require 'minitest/autorun'
 require 'proton_tests/interop.rb'
 require 'proton_tests/smoke.rb'

http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/1d3a1386/tests/ruby/proton_tests/interop.rb
----------------------------------------------------------------------
diff --git a/tests/ruby/proton_tests/interop.rb 
b/tests/ruby/proton_tests/interop.rb
index e14cba1..21d92d9 100755
--- a/tests/ruby/proton_tests/interop.rb
+++ b/tests/ruby/proton_tests/interop.rb
@@ -1,6 +1,6 @@
 #!/usr/bin/env ruby
 
-require 'test/unit'
+require 'minitest/autorun'
 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 < Test::Unit::TestCase
+class InteropTest < Minitest::Test
   Data = Qpid::Proton::Data
   Message = Qpid::Proton::Message
 

http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/1d3a1386/tests/ruby/proton_tests/smoke.rb
----------------------------------------------------------------------
diff --git a/tests/ruby/proton_tests/smoke.rb b/tests/ruby/proton_tests/smoke.rb
index 6368283..a382a0b 100644
--- a/tests/ruby/proton_tests/smoke.rb
+++ b/tests/ruby/proton_tests/smoke.rb
@@ -1,9 +1,9 @@
 #!/usr/bin/env ruby
 
-require 'test/unit'
+require 'minitest/autorun'
 require 'qpid_proton'
 
-class SmokeTest < Test::Unit::TestCase
+class SmokeTest < Minitest::Test
 
   Messenger = Qpid::Proton::Messenger
   Message = Qpid::Proton::Message
@@ -29,8 +29,8 @@ class SmokeTest < Test::Unit::TestCase
 
     pump()
 
-    assert @client.stopped
-    assert @server.stopped
+    assert @client.stopped?
+    assert @server.stopped?
   end
 
   def testSmoke(count=10)


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to