Update ruby-flexmock to 2.0.1.
pkgsrc change: update HOMEPAGE. Version 2.0.1 * A few bug fixes. Version 2.0.0 * bump to 2.0 to mark the change of maintainership. I hope I won't disappoint. * require 'flexmock' no longer pulls test_unit_integration. Require the latter explicitely * dropped support for pre-2.0 Rubies * added explicit minitest support. This makes the minitest integration much nicer to work with (in particular, the flexmock_teardown is now executed "just at the right place"), and fixes issues with minitest 5. Just require flexmock/minitest to get it. * partial mocks now supports prepended modules * validation errors that happen when a method is called (i.e. unexpected arguments, wrong call count) are reported with the backtrace of the call instead of with the backtrace of the expectation definition.
This commit is contained in:
parent
27a5fea1fd
commit
4b51004cef
3 changed files with 24 additions and 43 deletions
|
@ -1,10 +1,10 @@
|
|||
# $NetBSD: Makefile,v 1.13 2014/03/14 15:36:16 taca Exp $
|
||||
# $NetBSD: Makefile,v 1.14 2015/10/04 12:12:53 taca Exp $
|
||||
|
||||
DISTNAME= flexmock-1.3.3
|
||||
DISTNAME= flexmock-2.0.1
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= pkgsrc-users@NetBSD.org
|
||||
HOMEPAGE= https://github.com/jimweirich/flexmock
|
||||
HOMEPAGE= https://github.com/doudou/flexmock
|
||||
COMMENT= Flexible mock object library for Ruby unit testing
|
||||
LICENSE= isc
|
||||
|
||||
|
|
|
@ -1,14 +1,19 @@
|
|||
@comment $NetBSD: PLIST,v 1.13 2014/03/14 15:36:16 taca Exp $
|
||||
@comment $NetBSD: PLIST,v 1.14 2015/10/04 12:12:53 taca Exp $
|
||||
${GEM_HOME}/cache/${GEM_NAME}.gem
|
||||
${GEM_LIBDIR}/.autotest
|
||||
${GEM_LIBDIR}/.gitignore
|
||||
${GEM_LIBDIR}/.togglerc
|
||||
${GEM_LIBDIR}/.travis.yml
|
||||
${GEM_LIBDIR}/.yardopts
|
||||
${GEM_LIBDIR}/CHANGES
|
||||
${GEM_LIBDIR}/Gemfile
|
||||
${GEM_LIBDIR}/Gemfile.lock
|
||||
${GEM_LIBDIR}/README.md
|
||||
${GEM_LIBDIR}/Rakefile
|
||||
${GEM_LIBDIR}/doc/GoogleExample.rdoc
|
||||
${GEM_LIBDIR}/doc/examples/rspec_examples_spec.rdoc
|
||||
${GEM_LIBDIR}/doc/examples/test_unit_examples_test.rdoc
|
||||
${GEM_LIBDIR}/doc/examples/rspec_examples_spec.rb
|
||||
${GEM_LIBDIR}/doc/examples/test_unit_examples_test.rb
|
||||
${GEM_LIBDIR}/doc/index.rdoc
|
||||
${GEM_LIBDIR}/doc/jamis.rb
|
||||
${GEM_LIBDIR}/doc/releases/flexmock-0.4.0.rdoc
|
||||
${GEM_LIBDIR}/doc/releases/flexmock-0.4.1.rdoc
|
||||
${GEM_LIBDIR}/doc/releases/flexmock-0.4.2.rdoc
|
||||
|
@ -36,6 +41,7 @@ ${GEM_LIBDIR}/doc/releases/flexmock-1.2.0.rdoc
|
|||
${GEM_LIBDIR}/doc/releases/flexmock-1.3.0.rdoc
|
||||
${GEM_LIBDIR}/doc/releases/flexmock-1.3.1.rdoc
|
||||
${GEM_LIBDIR}/flexmock.blurb
|
||||
${GEM_LIBDIR}/flexmock.gemspec
|
||||
${GEM_LIBDIR}/install.rb
|
||||
${GEM_LIBDIR}/lib/flexmock.rb
|
||||
${GEM_LIBDIR}/lib/flexmock/argument_matchers.rb
|
||||
|
@ -57,6 +63,9 @@ ${GEM_LIBDIR}/lib/flexmock/expectation_director.rb
|
|||
${GEM_LIBDIR}/lib/flexmock/expectation_recorder.rb
|
||||
${GEM_LIBDIR}/lib/flexmock/explicit_needed.rb
|
||||
${GEM_LIBDIR}/lib/flexmock/extensions/active_record_model.rb
|
||||
${GEM_LIBDIR}/lib/flexmock/minitest.rb
|
||||
${GEM_LIBDIR}/lib/flexmock/minitest_extensions.rb
|
||||
${GEM_LIBDIR}/lib/flexmock/minitest_integration.rb
|
||||
${GEM_LIBDIR}/lib/flexmock/mock_builder.rb
|
||||
${GEM_LIBDIR}/lib/flexmock/mock_container.rb
|
||||
${GEM_LIBDIR}/lib/flexmock/noop.rb
|
||||
|
@ -77,36 +86,8 @@ ${GEM_LIBDIR}/lib/flexmock/test_unit_testcase_extensions.rb
|
|||
${GEM_LIBDIR}/lib/flexmock/undefined.rb
|
||||
${GEM_LIBDIR}/lib/flexmock/validators.rb
|
||||
${GEM_LIBDIR}/lib/flexmock/version.rb
|
||||
${GEM_LIBDIR}/test/aliasing_test.rb
|
||||
${GEM_LIBDIR}/test/assert_spy_called_test.rb
|
||||
${GEM_LIBDIR}/test/base_class_test.rb
|
||||
${GEM_LIBDIR}/test/based_partials_test.rb
|
||||
${GEM_LIBDIR}/test/container_methods_test.rb
|
||||
${GEM_LIBDIR}/test/default_framework_adapter_test.rb
|
||||
${GEM_LIBDIR}/test/demeter_mocking_test.rb
|
||||
${GEM_LIBDIR}/test/deprecated_methods_test.rb
|
||||
${GEM_LIBDIR}/test/examples_from_readme_test.rb
|
||||
${GEM_LIBDIR}/test/expectation_description_test.rb
|
||||
${GEM_LIBDIR}/test/extended_should_receive_test.rb
|
||||
${GEM_LIBDIR}/test/flexmodel_test.rb
|
||||
${GEM_LIBDIR}/test/mock_builder_test.rb
|
||||
${GEM_LIBDIR}/test/naming_test.rb
|
||||
${GEM_LIBDIR}/test/new_instances_test.rb
|
||||
${GEM_LIBDIR}/test/object_extensions_test.rb
|
||||
${GEM_LIBDIR}/test/partial_mock_test.rb
|
||||
${GEM_LIBDIR}/test/record_mode_test.rb
|
||||
${GEM_LIBDIR}/test/redirect_error.rb
|
||||
${GEM_LIBDIR}/test/rspec_integration/integration_spec.rb
|
||||
${GEM_LIBDIR}/test/rspec_integration/spy_example_spec.rb
|
||||
${GEM_LIBDIR}/test/samples_test.rb
|
||||
${GEM_LIBDIR}/test/should_ignore_missing_test.rb
|
||||
${GEM_LIBDIR}/test/should_receive_test.rb
|
||||
${GEM_LIBDIR}/test/spys_test.rb
|
||||
${GEM_LIBDIR}/test/symbol_extensions_test.rb
|
||||
${GEM_LIBDIR}/test/test_class_extensions.rb
|
||||
${GEM_LIBDIR}/test/test_setup.rb
|
||||
${GEM_LIBDIR}/test/test_unit_integration/auto_test_unit_test.rb
|
||||
${GEM_LIBDIR}/test/test_unit_integration/minitest_teardown_test.rb
|
||||
${GEM_LIBDIR}/test/tu_integration_test.rb
|
||||
${GEM_LIBDIR}/test/undefined_test.rb
|
||||
${GEM_LIBDIR}/rakelib/metrics.rake
|
||||
${GEM_LIBDIR}/rakelib/preview.rake
|
||||
${GEM_LIBDIR}/rakelib/tags.rake
|
||||
${GEM_LIBDIR}/todo.txt
|
||||
${GEM_HOME}/specifications/${GEM_NAME}.gemspec
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.13 2014/03/14 15:36:16 taca Exp $
|
||||
$NetBSD: distinfo,v 1.14 2015/10/04 12:12:53 taca Exp $
|
||||
|
||||
SHA1 (flexmock-1.3.3.gem) = 6327e36148fb126a6a2662fc9cf0f2173280ac7a
|
||||
RMD160 (flexmock-1.3.3.gem) = 9d2382586054adfa2a9278184916d0954166f87f
|
||||
Size (flexmock-1.3.3.gem) = 81920 bytes
|
||||
SHA1 (flexmock-2.0.1.gem) = 37ef01a640db759f86d7e27cd8f86e0ce9604c7e
|
||||
RMD160 (flexmock-2.0.1.gem) = 8b26244c0e47ba162b91c661cd4de0a06738fddd
|
||||
Size (flexmock-2.0.1.gem) = 62976 bytes
|
||||
|
|
Loading…
Reference in a new issue