commit
8f00b035fc
@ -0,0 +1 @@
|
||||
SOURCES/mocha-1.9.0.gem
|
@ -0,0 +1 @@
|
||||
3f14d2142b1693ad9e38e4672aaffc7c29f622c3 SOURCES/mocha-1.9.0.gem
|
@ -0,0 +1,101 @@
|
||||
From a65ea1ed3dce43cbc2cc16b3660afd2cce3db33e Mon Sep 17 00:00:00 2001
|
||||
From: James Mead <james@floehopper.org>
|
||||
Date: Mon, 2 Mar 2015 19:37:21 +0000
|
||||
Subject: [PATCH] As of Ruby v2.2, nil is frozen so these tests are irrelevant.
|
||||
|
||||
In all these scenarios in the latest versions of Ruby, a `Mocha::StubbingError`
|
||||
will be raised with the message: "can't stub method on frozen object: nil".
|
||||
|
||||
This behaviour is already tested in the more generic `StubbingFrozenObjectTest`
|
||||
and so it's safe to ignore these tests for the relevant versions of Ruby.
|
||||
---
|
||||
test/acceptance/stubbing_nil_test.rb | 68 +++++++++++++++++++-----------------
|
||||
1 file changed, 35 insertions(+), 33 deletions(-)
|
||||
|
||||
diff --git a/test/acceptance/stubbing_nil_test.rb b/test/acceptance/stubbing_nil_test.rb
|
||||
index ac163e7..f8c55cd 100644
|
||||
--- a/test/acceptance/stubbing_nil_test.rb
|
||||
+++ b/test/acceptance/stubbing_nil_test.rb
|
||||
@@ -13,47 +13,49 @@ def teardown
|
||||
teardown_acceptance_test
|
||||
end
|
||||
|
||||
- def test_should_allow_stubbing_method_on_nil
|
||||
- Mocha::Configuration.allow(:stubbing_method_on_nil)
|
||||
- test_result = run_as_test do
|
||||
- nil.stubs(:stubbed_method)
|
||||
+ if RUBY_VERSION < '2.2.0'
|
||||
+ def test_should_allow_stubbing_method_on_nil
|
||||
+ Mocha::Configuration.allow(:stubbing_method_on_nil)
|
||||
+ test_result = run_as_test do
|
||||
+ nil.stubs(:stubbed_method)
|
||||
+ end
|
||||
+ assert_passed(test_result)
|
||||
+ assert !@logger.warnings.include?("stubbing method on nil: nil.stubbed_method")
|
||||
end
|
||||
- assert_passed(test_result)
|
||||
- assert !@logger.warnings.include?("stubbing method on nil: nil.stubbed_method")
|
||||
- end
|
||||
|
||||
- def test_should_warn_on_stubbing_method_on_nil
|
||||
- Mocha::Configuration.warn_when(:stubbing_method_on_nil)
|
||||
- test_result = run_as_test do
|
||||
- nil.stubs(:stubbed_method)
|
||||
+ def test_should_warn_on_stubbing_method_on_nil
|
||||
+ Mocha::Configuration.warn_when(:stubbing_method_on_nil)
|
||||
+ test_result = run_as_test do
|
||||
+ nil.stubs(:stubbed_method)
|
||||
+ end
|
||||
+ assert_passed(test_result)
|
||||
+ assert @logger.warnings.include?("stubbing method on nil: nil.stubbed_method")
|
||||
end
|
||||
- assert_passed(test_result)
|
||||
- assert @logger.warnings.include?("stubbing method on nil: nil.stubbed_method")
|
||||
- end
|
||||
|
||||
- def test_should_prevent_stubbing_method_on_nil
|
||||
- Mocha::Configuration.prevent(:stubbing_method_on_nil)
|
||||
- test_result = run_as_test do
|
||||
- nil.stubs(:stubbed_method)
|
||||
+ def test_should_prevent_stubbing_method_on_nil
|
||||
+ Mocha::Configuration.prevent(:stubbing_method_on_nil)
|
||||
+ test_result = run_as_test do
|
||||
+ nil.stubs(:stubbed_method)
|
||||
+ end
|
||||
+ assert_failed(test_result)
|
||||
+ assert test_result.error_messages.include?("Mocha::StubbingError: stubbing method on nil: nil.stubbed_method")
|
||||
end
|
||||
- assert_failed(test_result)
|
||||
- assert test_result.error_messages.include?("Mocha::StubbingError: stubbing method on nil: nil.stubbed_method")
|
||||
- end
|
||||
|
||||
- def test_should_default_to_prevent_stubbing_method_on_non_mock_object
|
||||
- test_result = run_as_test do
|
||||
- nil.stubs(:stubbed_method)
|
||||
+ def test_should_default_to_prevent_stubbing_method_on_non_mock_object
|
||||
+ test_result = run_as_test do
|
||||
+ nil.stubs(:stubbed_method)
|
||||
+ end
|
||||
+ assert_failed(test_result)
|
||||
+ assert test_result.error_messages.include?("Mocha::StubbingError: stubbing method on nil: nil.stubbed_method")
|
||||
end
|
||||
- assert_failed(test_result)
|
||||
- assert test_result.error_messages.include?("Mocha::StubbingError: stubbing method on nil: nil.stubbed_method")
|
||||
- end
|
||||
|
||||
- def test_should_allow_stubbing_method_on_non_nil_object
|
||||
- Mocha::Configuration.prevent(:stubbing_method_on_nil)
|
||||
- object = Object.new
|
||||
- test_result = run_as_test do
|
||||
- object.stubs(:stubbed_method)
|
||||
+ def test_should_allow_stubbing_method_on_non_nil_object
|
||||
+ Mocha::Configuration.prevent(:stubbing_method_on_nil)
|
||||
+ object = Object.new
|
||||
+ test_result = run_as_test do
|
||||
+ object.stubs(:stubbed_method)
|
||||
+ end
|
||||
+ assert_passed(test_result)
|
||||
end
|
||||
- assert_passed(test_result)
|
||||
end
|
||||
end
|
@ -0,0 +1,197 @@
|
||||
%global gem_name mocha
|
||||
|
||||
Summary: Mocking and stubbing library
|
||||
Name: rubygem-%{gem_name}
|
||||
Version: 1.9.0
|
||||
Release: 5%{?dist}
|
||||
License: MIT or Ruby or BSD
|
||||
URL: https://mocha.jamesmead.org
|
||||
Source0: http://rubygems.org/gems/%{gem_name}-%{version}.gem
|
||||
BuildRequires: ruby(release)
|
||||
BuildRequires: rubygems-devel
|
||||
BuildRequires: ruby
|
||||
BuildRequires: rubygem(metaclass)
|
||||
BuildRequires: rubygem(introspection)
|
||||
BuildRequires: rubygem(minitest)
|
||||
BuildArch: noarch
|
||||
|
||||
%description
|
||||
Mocking and stubbing library with JMock/SchMock syntax, which allows mocking
|
||||
and stubbing of methods on real (non-mock) classes.
|
||||
|
||||
%package doc
|
||||
Summary: Documentation for %{name}
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
BuildArch: noarch
|
||||
|
||||
%description doc
|
||||
This package contains documentation for %{name}.
|
||||
|
||||
|
||||
%prep
|
||||
%setup -q -n %{gem_name}-%{version}
|
||||
|
||||
%build
|
||||
gem build ../%{gem_name}-%{version}.gemspec
|
||||
%gem_install
|
||||
|
||||
%install
|
||||
mkdir -p %{buildroot}%{gem_dir}
|
||||
cp -pa .%{gem_dir}/* \
|
||||
%{buildroot}%{gem_dir}/
|
||||
|
||||
%check
|
||||
pushd .%{gem_instdir}
|
||||
# Each part of test suite must be run separately, otherwise the test suite fails.
|
||||
# https://github.com/freerange/mocha/issues/121
|
||||
for kind in unit acceptance integration; do
|
||||
ruby -e "Dir.glob('./test/$kind/**/*_test.rb').each {|t| require t}"
|
||||
done
|
||||
popd
|
||||
|
||||
%files
|
||||
%exclude %{gem_instdir}/.*
|
||||
%exclude %{gem_instdir}/init.rb
|
||||
%doc %{gem_instdir}/COPYING.md
|
||||
%doc %{gem_instdir}/README.md
|
||||
%license %{gem_instdir}/MIT-LICENSE.md
|
||||
%doc %{gem_instdir}/RELEASE.md
|
||||
%dir %{gem_instdir}
|
||||
%{gem_instdir}/bin
|
||||
%{gem_libdir}
|
||||
%exclude %{gem_cache}
|
||||
%{gem_spec}
|
||||
|
||||
%files doc
|
||||
%{gem_instdir}/Gemfile*
|
||||
%doc %{gem_docdir}
|
||||
%doc %{gem_instdir}/CONTRIBUTING.md
|
||||
%{gem_instdir}/Rakefile
|
||||
%{gem_instdir}/mocha.gemspec
|
||||
%{gem_instdir}/gemfiles/
|
||||
%{gem_instdir}/test/
|
||||
%{gem_instdir}/docs/
|
||||
%{gem_instdir}/yard-templates/
|
||||
|
||||
|
||||
%changelog
|
||||
* Wed Jan 10 2024 MSVSphere Packaging Team <packager@msvsphere-os.ru> - 1.9.0-5
|
||||
- Rebuilt for MSVSphere 9.3
|
||||
|
||||
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.0-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.0-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Wed Oct 09 2019 Pavel Valena <pvalena@redhat.com> - 1.9.0-1
|
||||
- Update to mocha 1.9.0.
|
||||
|
||||
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-9
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-8
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Mon Jul 07 2014 Vít Ondruch <vondruch@redhat.com> - 1.1.0-1
|
||||
- Update to Mocha 1.1.0.
|
||||
|
||||
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.14.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||
|
||||
* Thu Aug 15 2013 Ken Dreyer <ktdreyer@ktdreyer.com> - 0.14.0-1
|
||||
- Update to 0.14.0
|
||||
- Run unit and acceptance tests in a single process
|
||||
- Patch test suite to work outside rake/bundler
|
||||
|
||||
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.13.1-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||
|
||||
* Mon Feb 25 2013 Vít Ondruch <vondruch@redhat.com> - 0.13.1-3
|
||||
- Rebuild for https://fedoraproject.org/wiki/Features/Ruby_2.0.0
|
||||
|
||||
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.13.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||
|
||||
* Wed Jan 02 2013 Vít Ondruch <vondruch@redhat.com> - 0.13.1-1
|
||||
- Updated to the Mocha 0.13.1.
|
||||
|
||||
* Mon Jul 23 2012 Bohuslav Kabrda <bkabrda@redhat.com> - 0.12.1-1
|
||||
- Update to Mocha 0.12.1, as this version is needed by ActionPack 3.2.6 tests.
|
||||
|
||||
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.11.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||
|
||||
* Thu Apr 19 2012 Vít Ondruch <vondruch@redhat.com> - 0.11.0-1
|
||||
- Updated to the Mocha 0.11.0.
|
||||
|
||||
* Thu Jan 19 2012 Vít Ondruch <vondruch@redhat.com> - 0.10.0-3
|
||||
- Rebuild for Ruby 1.9.3.
|
||||
|
||||
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.10.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||
|
||||
* Mon Oct 03 2011 Vít Ondruch <vondruch@redhat.com> - 0.10.0-1
|
||||
- Updated to the Mocha 0.10.0.
|
||||
|
||||
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.8-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||
|
||||
* Sun Aug 29 2010 Michael Stahnke <stahnma@fedoraproject.org> - 0.9.8-1
|
||||
- Fixed odd naming in BR
|
||||
- Updating to 0.9.8
|
||||
- Breaking into -doc package as well
|
||||
- Adding tests
|
||||
|
||||
* Thu Jul 23 2009 Jeroen van Meeuwen <kanarip@fedoraproject.org> - 0.9.7-1
|
||||
- New upstream version
|
||||
|
||||
* Mon Apr 27 2009 Jeroen van Meeuwen <kanarip@fedoraproject.org> - 0.9.5-1
|
||||
- New upstream version
|
||||
|
||||
* Sun Feb 01 2009 Jeroen van Meeuwen <kanarip@fedoraproject.org> - 0.9.1-4
|
||||
- Mark files as %%doc
|
||||
|
||||
* Thu Oct 30 2008 Jeroen van Meeuwen <kanarip@fedoraproject.org> - 0.9.1-3
|
||||
- Use gem instead of tgz
|
||||
|
||||
* Sat Oct 25 2008 Jeroen van Meeuwen <kanarip@fedoraproject.org> - 0.9.1-2
|
||||
- Fix license
|
||||
|
||||
* Sat Oct 25 2008 Jeroen van Meeuwen <kanarip@fedoraproject.org> - 0.9.1-1
|
||||
- New upstream version
|
||||
- Fix license not being marked as %%doc
|
||||
|
||||
* Mon Sep 08 2008 Jeroen van Meeuwen <kanarip@fedoraproject.org> - 0.9.0-2
|
||||
- Add ruby(abi) = 1.8 requirement
|
||||
|
||||
* Sat Aug 23 2008 Jeroen van Meeuwen <kanarip@fedoraproject.org> - 0.9.0-1
|
||||
- New upstream version
|
||||
- Initial package for review
|
||||
|
||||
* Sun Jul 13 2008 root <root@oss1-repo.usersys.redhat.com> - 0.5.6-1
|
||||
- Initial package
|
Loading…
Reference in new issue