Hello community,

here is the log from the commit of package yast2-update for openSUSE:Factory 
checked in at 2015-02-08 13:03:04
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/yast2-update (Old)
 and      /work/SRC/openSUSE:Factory/.yast2-update.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "yast2-update"

Changes:
--------
--- /work/SRC/openSUSE:Factory/yast2-update/yast2-update.changes        
2014-12-05 21:03:10.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-update.new/yast2-update.changes   
2015-02-08 13:03:06.000000000 +0100
@@ -1,0 +2,6 @@
+Fri Feb  6 13:39:23 UTC 2015 - [email protected]
+
+- The unit tests are now compatible with RSpec 3 (bnc#916364)
+- 3.1.26
+
+-------------------------------------------------------------------

Old:
----
  yast2-update-3.1.25.tar.bz2

New:
----
  yast2-update-3.1.26.tar.bz2

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

Other differences:
------------------
++++++ yast2-update.spec ++++++
--- /var/tmp/diff_new_pack.J83eAy/_old  2015-02-08 13:03:07.000000000 +0100
+++ /var/tmp/diff_new_pack.J83eAy/_new  2015-02-08 13:03:07.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-update
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:           yast2-update
-Version:        3.1.25
+Version:        3.1.26
 Release:        0
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build

++++++ yast2-update-3.1.25.tar.bz2 -> yast2-update-3.1.26.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-update-3.1.25/package/yast2-update.changes 
new/yast2-update-3.1.26/package/yast2-update.changes
--- old/yast2-update-3.1.25/package/yast2-update.changes        2014-12-04 
11:22:13.000000000 +0100
+++ new/yast2-update-3.1.26/package/yast2-update.changes        2015-02-06 
14:57:10.000000000 +0100
@@ -1,4 +1,10 @@
 -------------------------------------------------------------------
+Fri Feb  6 13:39:23 UTC 2015 - [email protected]
+
+- The unit tests are now compatible with RSpec 3 (bnc#916364)
+- 3.1.26
+
+-------------------------------------------------------------------
 Thu Dec  4 09:51:46 UTC 2014 - [email protected]
 
 - remove X-KDE-Library from desktop file (bnc#899104)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-update-3.1.25/package/yast2-update.spec 
new/yast2-update-3.1.26/package/yast2-update.spec
--- old/yast2-update-3.1.25/package/yast2-update.spec   2014-12-04 
11:22:13.000000000 +0100
+++ new/yast2-update-3.1.26/package/yast2-update.spec   2015-02-06 
14:57:10.000000000 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           yast2-update
-Version:        3.1.25
+Version:        3.1.26
 Release:        0
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-update-3.1.25/test/update_test.rb 
new/yast2-update-3.1.26/test/update_test.rb
--- old/yast2-update-3.1.25/test/update_test.rb 2014-11-14 20:22:35.000000000 
+0100
+++ new/yast2-update-3.1.26/test/update_test.rb 2015-02-06 14:57:11.000000000 
+0100
@@ -155,7 +155,7 @@
           expect(msg).to match(/upgrade is not handled by this product/i)
         end.and_call_original
 
-        expect(Yast::Update.SetDesktopPattern).to be_true
+        expect(Yast::Update.SetDesktopPattern).to eq(true)
       end
     end
 
@@ -168,7 +168,7 @@
           expect(msg).to match(/(Sysconfig file .* does not exist|cannot read 
default window manager)/i)
         end.twice.and_call_original
 
-        expect(Yast::Update.SetDesktopPattern).to be_true
+        expect(Yast::Update.SetDesktopPattern).to eq(true)
       end
     end
 
@@ -182,7 +182,7 @@
           expect(msg).to match(/no matching desktop found .* 
#{installed_desktop}/i)
         end.and_call_original
 
-        expect(Yast::Update.SetDesktopPattern).to be_true
+        expect(Yast::Update.SetDesktopPattern).to eq(true)
       end
     end
 
@@ -197,7 +197,7 @@
           expect(msg).to match(/(package .* installed: false|not all packages 
.* are installed)/i)
         end.twice.and_call_original
 
-        expect(Yast::Update.SetDesktopPattern).to be_true
+        expect(Yast::Update.SetDesktopPattern).to eq(true)
       end
     end
 
@@ -208,7 +208,7 @@
           Yast::Pkg.stub(:ResolvableInstall).with(kind_of(String), 
:pattern).and_return(false)
 
           expect(Yast::Report).to receive(:Error).with(/cannot select these 
patterns/i)
-          expect(Yast::Update.SetDesktopPattern).to be_false
+          expect(Yast::Update.SetDesktopPattern).to eq(false)
         end
       end
 
@@ -218,7 +218,7 @@
           Yast::Pkg.stub(:ResolvableInstall).with(kind_of(String), 
:package).and_return(false)
 
           expect(Yast::Report).to receive(:Error).with(/cannot select these 
packages/i)
-          expect(Yast::Update.SetDesktopPattern).to be_false
+          expect(Yast::Update.SetDesktopPattern).to eq(false)
         end
       end
 
@@ -226,7 +226,7 @@
         it "returns true" do
           default_SetDesktopPattern_stubs
 
-          expect(Yast::Update.SetDesktopPattern).to be_true
+          expect(Yast::Update.SetDesktopPattern).to eq(true)
         end
       end
     end

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

Reply via email to