Hello community,

here is the log from the commit of package rubygem-minitest for 
openSUSE:Factory checked in at 2016-03-01 09:41:14
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-minitest (Old)
 and      /work/SRC/openSUSE:Factory/.rubygem-minitest.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "rubygem-minitest"

Changes:
--------
--- /work/SRC/openSUSE:Factory/rubygem-minitest/rubygem-minitest.changes        
2015-12-14 10:13:44.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.rubygem-minitest.new/rubygem-minitest.changes   
2016-03-01 09:41:21.000000000 +0100
@@ -1,0 +2,12 @@
+Mon Jan 25 05:51:54 UTC 2016 - co...@suse.com
+
+- updated to version 5.8.4
+ see installed History.rdoc
+
+  === 5.8.4 / 2016-01-21
+  
+  * 1 bug fix:
+  
+    * Allow Minitest::Assertion to pass through assert_raises so inner 
failures are dealt with first.
+
+-------------------------------------------------------------------

Old:
----
  minitest-5.8.3.gem

New:
----
  minitest-5.8.4.gem

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ rubygem-minitest.spec ++++++
--- /var/tmp/diff_new_pack.CIUX1t/_old  2016-03-01 09:41:24.000000000 +0100
+++ /var/tmp/diff_new_pack.CIUX1t/_new  2016-03-01 09:41:24.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-minitest
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -24,7 +24,7 @@
 #
 
 Name:           rubygem-minitest
-Version:        5.8.3
+Version:        5.8.4
 Release:        0
 %define mod_name minitest
 %define mod_full_name %{mod_name}-%{version}

++++++ minitest-5.8.3.gem -> minitest-5.8.4.gem ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/History.rdoc new/History.rdoc
--- old/History.rdoc    2015-11-17 23:59:55.000000000 +0100
+++ new/History.rdoc    2016-01-22 00:45:36.000000000 +0100
@@ -1,3 +1,9 @@
+=== 5.8.4 / 2016-01-21
+
+* 1 bug fix:
+
+  * Allow Minitest::Assertion to pass through assert_raises so inner failures 
are dealt with first.
+
 === 5.8.3 / 2015-11-17
 
 * 1 minor enhancement:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/README.rdoc new/README.rdoc
--- old/README.rdoc     2015-11-17 23:59:55.000000000 +0100
+++ new/README.rdoc     2016-01-22 00:45:36.000000000 +0100
@@ -462,6 +462,8 @@
                                `ruby test.rb --tag js` runs tests tagged :js.
 minitest-around             :: Around block for minitest. An alternative to
                                setup/teardown dance.
+minitest-assert_errors      :: Adds Minitest assertions to test for errors 
raised
+                               or not raised by Minitest itself.
 minitest-autotest           :: autotest is a continous testing facility meant 
to
                                be used during development.
 minitest-bacon              :: minitest-bacon extends minitest with bacon-like
@@ -504,7 +506,10 @@
                                assertions and expectations.
 minitest-growl              :: Test notifier for minitest via growl.
 minitest-happy              :: GLOBALLY ACTIVATE MINITEST PRIDE! RAWR!
+minitest-have_tag           :: Adds Minitest assertions to test for the 
existence of 
+                               HTML tags, including contents, within a 
provided string.
 minitest-hooks              :: Around and before_all/after_all/around_all hooks
+minitest-hyper              :: Pretty, single-page HTML reports for your 
Minitest runs
 minitest-implicit-subject   :: Implicit declaration of the test subject.
 minitest-instrument         :: Instrument ActiveSupport::Notifications when
                                test method is executed.
@@ -525,6 +530,7 @@
 minitest-mongoid            :: Mongoid assertion matchers for Minitest.
 minitest-must_not           :: Provides must_not as an alias for wont in
                                Minitest.
+minitest-optional_retry     :: Automatically retry failed test to help with 
flakiness.
 minitest-osx                :: Reporter for the Mac OS X notification center.
 minitest-parallel_fork      :: Fork-based parallelization
 minitest-parallel-db        :: Run tests in parallel with a single database.
@@ -539,6 +545,8 @@
 minitest-server             :: minitest-server provides a client/server setup 
                                with your minitest process, allowing your test 
                                run to send its results directly to a handler.
+minitest-sequel             :: Minitest assertions to speed-up development and 
+                               testing of Ruby Sequel database setups.
 minitest-shared_description :: Support for shared specs and shared spec
                                subclasses
 minitest-should_syntax      :: RSpec-style +x.should == y+ assertions for
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
Files old/checksums.yaml.gz.sig and new/checksums.yaml.gz.sig differ
Files old/data.tar.gz.sig and new/data.tar.gz.sig differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/minitest/assertions.rb 
new/lib/minitest/assertions.rb
--- old/lib/minitest/assertions.rb      2015-11-17 23:59:55.000000000 +0100
+++ new/lib/minitest/assertions.rb      2016-01-22 00:45:36.000000000 +0100
@@ -301,7 +301,7 @@
       rescue *exp => e
         pass # count assertion
         return e
-      rescue Minitest::Skip
+      rescue Minitest::Skip, Minitest::Assertion
         # don't count assertion
         raise
       rescue SignalException, SystemExit
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/minitest.rb new/lib/minitest.rb
--- old/lib/minitest.rb 2015-11-17 23:59:55.000000000 +0100
+++ new/lib/minitest.rb 2016-01-22 00:45:36.000000000 +0100
@@ -7,7 +7,7 @@
 # :include: README.rdoc
 
 module Minitest
-  VERSION = "5.8.3" # :nodoc:
+  VERSION = "5.8.4" # :nodoc:
   ENCS = "".respond_to? :encoding # :nodoc:
 
   @@installed_at_exit ||= false
@@ -139,9 +139,6 @@
   ##
   # Internal run method. Responsible for telling all Runnable
   # sub-classes to run.
-  #
-  # NOTE: this method is redefined in parallel_each.rb, which is
-  # loaded if a Runnable calls parallelize_me!.
 
   def self.__run reporter, options
     suites = Runnable.runnables.shuffle
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata        2015-11-17 23:59:55.000000000 +0100
+++ new/metadata        2016-01-22 00:45:36.000000000 +0100
@@ -1,7 +1,7 @@
 --- !ruby/object:Gem::Specification
 name: minitest
 version: !ruby/object:Gem::Version
-  version: 5.8.3
+  version: 5.8.4
 platform: ruby
 authors:
 - Ryan Davis
@@ -29,7 +29,7 @@
   qx3h45R1CAsObX0SQDIT+rRbQrtKz1GHIZTOFYvEJjUY1XmRTZupD3CJ8Q7sDqSy
   NLq5jm1fq6Y9Uolu3RJbmycf
   -----END CERTIFICATE-----
-date: 2015-11-17 00:00:00.000000000 Z
+date: 2016-01-21 00:00:00.000000000 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: rdoc
Files old/metadata.gz.sig and new/metadata.gz.sig differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/test/minitest/test_minitest_spec.rb 
new/test/minitest/test_minitest_spec.rb
--- old/test/minitest/test_minitest_spec.rb     2015-11-17 23:59:55.000000000 
+0100
+++ new/test/minitest/test_minitest_spec.rb     2016-01-22 00:45:36.000000000 
+0100
@@ -97,17 +97,17 @@
 
     msg = <<-EOM.gsub(/^ {6}/, "").chomp
       [RuntimeError] exception expected, not
-      Class: <Minitest::Assertion>
-      Message: <"Minitest::Assertion">
+      Class: <StandardError>
+      Message: <"woot">
       ---Backtrace---
     EOM
 
     assert_triggered msg do
-      proc { raise Minitest::Assertion }.must_raise RuntimeError
+      proc { raise StandardError, "woot" }.must_raise RuntimeError
     end
 
     assert_triggered "msg.\n#{msg}" do
-      proc { raise Minitest::Assertion }.must_raise RuntimeError, "msg"
+      proc { raise StandardError, "woot" }.must_raise RuntimeError, "msg"
     end
   end
 


Reply via email to