Update ruby-mocha package to 0.9.12.
= 0.9.12 () * Make Mocha's tests pass under Ruby 1.9.2 i.e. using MiniTest. One of the main issues was that we were not parsing stacktraces on MiniTest errors comprehensively enough. * Avoid 'circular require considered harmful' warning when running Mocha's tests in Ruby 1.9.2 * Make performance tests work on Ruby 1.9.2 i.e. using MiniTest. * Declare rake as a *development* dependency with newer versions of Rubygems since it's only needed to carry out developer-related tasks. = 0.9.11 (1613ed2267fef5927ea06adfdbcf512b89eadaad) * Added explicit support for minitest v1.5.0 to v2.0.2. * Make testable by rubygems-test. * Update links to my blog and make other links consistent. * Added a URI parameter matcher that ignores the order of query parameters so that tests can be independent of undefined hash ordering (patch by Paul Battley). * Include unexpected invocation in failure message and change the language slightly to make the failure message less confusing. See http://floehopper.lighthouseapp.com/projects/22289/tickets/52. * No need to create regular expression every time the BacktraceFilter#filtered method is called. See http://floehopper.lighthouseapp.com/projects/22289-mocha/tickets/66.
This commit is contained in:
parent
edbd66182e
commit
817654a4ef
3 changed files with 13 additions and 8 deletions
|
@ -1,6 +1,6 @@
|
|||
# $NetBSD: Makefile,v 1.7 2010/12/04 04:01:54 taca Exp $
|
||||
# $NetBSD: Makefile,v 1.8 2011/06/18 01:47:54 taca Exp $
|
||||
|
||||
DISTNAME= mocha-0.9.10
|
||||
DISTNAME= mocha-0.9.12
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= pkgsrc-users@NetBSD.org
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
@comment $NetBSD: PLIST,v 1.5 2010/12/04 04:01:54 taca Exp $
|
||||
@comment $NetBSD: PLIST,v 1.6 2011/06/18 01:47:54 taca Exp $
|
||||
${GEM_HOME}/cache/${GEM_NAME}.gem
|
||||
${GEM_LIBDIR}/.gemtest
|
||||
${GEM_LIBDIR}/COPYING.rdoc
|
||||
${GEM_LIBDIR}/MIT-LICENSE.rdoc
|
||||
${GEM_LIBDIR}/README.rdoc
|
||||
|
@ -33,7 +34,9 @@ ${GEM_LIBDIR}/lib/mocha/integration/mini_test/exception_translation.rb
|
|||
${GEM_LIBDIR}/lib/mocha/integration/mini_test/version_13.rb
|
||||
${GEM_LIBDIR}/lib/mocha/integration/mini_test/version_140.rb
|
||||
${GEM_LIBDIR}/lib/mocha/integration/mini_test/version_141.rb
|
||||
${GEM_LIBDIR}/lib/mocha/integration/mini_test/version_142_and_above.rb
|
||||
${GEM_LIBDIR}/lib/mocha/integration/mini_test/version_142_to_172.rb
|
||||
${GEM_LIBDIR}/lib/mocha/integration/mini_test/version_200.rb
|
||||
${GEM_LIBDIR}/lib/mocha/integration/mini_test/version_201_to_202.rb
|
||||
${GEM_LIBDIR}/lib/mocha/integration/test_unit.rb
|
||||
${GEM_LIBDIR}/lib/mocha/integration/test_unit/assertion_counter.rb
|
||||
${GEM_LIBDIR}/lib/mocha/integration/test_unit/gem_version_200.rb
|
||||
|
@ -71,6 +74,7 @@ ${GEM_LIBDIR}/lib/mocha/parameter_matchers/kind_of.rb
|
|||
${GEM_LIBDIR}/lib/mocha/parameter_matchers/not.rb
|
||||
${GEM_LIBDIR}/lib/mocha/parameter_matchers/object.rb
|
||||
${GEM_LIBDIR}/lib/mocha/parameter_matchers/optionally.rb
|
||||
${GEM_LIBDIR}/lib/mocha/parameter_matchers/query_string.rb
|
||||
${GEM_LIBDIR}/lib/mocha/parameter_matchers/regexp_matches.rb
|
||||
${GEM_LIBDIR}/lib/mocha/parameter_matchers/responds_with.rb
|
||||
${GEM_LIBDIR}/lib/mocha/parameter_matchers/yaml_equivalent.rb
|
||||
|
@ -101,6 +105,7 @@ ${GEM_LIBDIR}/test/acceptance/mocha_test_result_test.rb
|
|||
${GEM_LIBDIR}/test/acceptance/mock_test.rb
|
||||
${GEM_LIBDIR}/test/acceptance/mock_with_initializer_block_test.rb
|
||||
${GEM_LIBDIR}/test/acceptance/mocked_methods_dispatch_test.rb
|
||||
${GEM_LIBDIR}/test/acceptance/multiple_expectations_failure_message_test.rb
|
||||
${GEM_LIBDIR}/test/acceptance/optional_parameters_test.rb
|
||||
${GEM_LIBDIR}/test/acceptance/parameter_matcher_test.rb
|
||||
${GEM_LIBDIR}/test/acceptance/partial_mocks_test.rb
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.6 2010/12/04 04:01:54 taca Exp $
|
||||
$NetBSD: distinfo,v 1.7 2011/06/18 01:47:54 taca Exp $
|
||||
|
||||
SHA1 (mocha-0.9.10.gem) = d4800469173efb69183f2f5598f2ed528bafe8cd
|
||||
RMD160 (mocha-0.9.10.gem) = 84e21fd238f0e6a768cef3cad5ddfebdb8ba5625
|
||||
Size (mocha-0.9.10.gem) = 66048 bytes
|
||||
SHA1 (mocha-0.9.12.gem) = 9608f143af20514be95ac4385f693f9fe865acb6
|
||||
RMD160 (mocha-0.9.12.gem) = e15617c7074d1e7fea24f5344341a805bbbbc3df
|
||||
Size (mocha-0.9.12.gem) = 67584 bytes
|
||||
|
|
Loading…
Reference in a new issue