[libtest2-suite-perl] branch master updated (526e47c -> 2f08d1e)

gregor herrmann gregoa at debian.org
Sat Jul 8 14:16:41 UTC 2017


This is an automated email from the git hooks/post-receive script.

gregoa pushed a change to branch master
in repository libtest2-suite-perl.

      from  526e47c   releasing package libtest2-suite-perl version 0.000070-1
      adds  1d9403b   Automated Version Bump
      adds  585d5ae   Switch to RewriteVersion
      adds  9af67c5   Fix Test2::Tools::Class isa_ok
      adds  8e53aac   Remove unnecessary variable
      adds  f2bf923   Merge pull request #120 from mikeraynham/test_tools_class_isa_ok
      adds  05eea1e   Fix Test2::Mock doesn't accept non-ref values
      adds  09bc6d3   Merge pull request #121 from mikeraynham/test2_mock
      adds  ab1413c   Introduce Test2::V# bundles
      adds  842fbff   v0.000071
      adds  716672e   Automated Version Bump
      adds  c5399ef   Update Changes
      adds  aca332e   v0.000072
      adds  1b695ca   New upstream version 0.000072
       new  b46851f   Updated version 0.000072 from 'upstream/0.000072'
       new  8a3b5d2   Update debian/changelog
       new  e133e8a   Declare compliance with Debian Policy 4.0.0.
       new  2f08d1e   releasing package libtest2-suite-perl version 0.000072-1

The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 Changes                                 |  12 +++
 MANIFEST                                |   6 +-
 META.json                               |   6 +-
 META.yml                                |   6 +-
 Makefile.PL                             |   4 +-
 README                                  |  28 +++++++
 README.md                               |  28 +++++++
 debian/changelog                        |   7 ++
 debian/control                          |   2 +-
 lib/Test2/Bundle.pm                     |   2 +-
 lib/Test2/Bundle/Extended.pm            | 144 ++++----------------------------
 lib/Test2/Bundle/More.pm                |   2 +-
 lib/Test2/Bundle/Simple.pm              |   2 +-
 lib/Test2/Compare.pm                    |   2 +-
 lib/Test2/Compare/Array.pm              |   2 +-
 lib/Test2/Compare/Bag.pm                |   2 +-
 lib/Test2/Compare/Base.pm               |   2 +-
 lib/Test2/Compare/Bool.pm               |   2 +-
 lib/Test2/Compare/Custom.pm             |   2 +-
 lib/Test2/Compare/DeepRef.pm            |   2 +-
 lib/Test2/Compare/Delta.pm              |   2 +-
 lib/Test2/Compare/Event.pm              |   2 +-
 lib/Test2/Compare/EventMeta.pm          |   2 +-
 lib/Test2/Compare/Hash.pm               |   2 +-
 lib/Test2/Compare/Meta.pm               |   2 +-
 lib/Test2/Compare/Negatable.pm          |   2 +-
 lib/Test2/Compare/Number.pm             |   2 +-
 lib/Test2/Compare/Object.pm             |   2 +-
 lib/Test2/Compare/OrderedSubset.pm      |   2 +-
 lib/Test2/Compare/Pattern.pm            |   2 +-
 lib/Test2/Compare/Ref.pm                |   2 +-
 lib/Test2/Compare/Regex.pm              |   2 +-
 lib/Test2/Compare/Scalar.pm             |   2 +-
 lib/Test2/Compare/Set.pm                |   2 +-
 lib/Test2/Compare/String.pm             |   2 +-
 lib/Test2/Compare/Undef.pm              |   2 +-
 lib/Test2/Compare/Wildcard.pm           |   2 +-
 lib/Test2/Mock.pm                       |  16 ++--
 lib/Test2/Plugin.pm                     |   2 +-
 lib/Test2/Plugin/BailOnFail.pm          |   4 +-
 lib/Test2/Plugin/DieOnFail.pm           |   4 +-
 lib/Test2/Plugin/ExitSummary.pm         |   2 +-
 lib/Test2/Plugin/SRand.pm               |   2 +-
 lib/Test2/Plugin/UTF8.pm                |   2 +-
 lib/Test2/Require.pm                    |   2 +-
 lib/Test2/Require/AuthorTesting.pm      |   2 +-
 lib/Test2/Require/EnvVar.pm             |   2 +-
 lib/Test2/Require/Fork.pm               |   2 +-
 lib/Test2/Require/Module.pm             |   2 +-
 lib/Test2/Require/Perl.pm               |   2 +-
 lib/Test2/Require/RealFork.pm           |   2 +-
 lib/Test2/Require/Threads.pm            |   2 +-
 lib/Test2/Suite.pm                      |  30 ++++++-
 lib/Test2/Todo.pm                       |   2 +-
 lib/Test2/Tools.pm                      |   2 +-
 lib/Test2/Tools/Basic.pm                |   2 +-
 lib/Test2/Tools/Class.pm                |   4 +-
 lib/Test2/Tools/ClassicCompare.pm       |   2 +-
 lib/Test2/Tools/Compare.pm              |   2 +-
 lib/Test2/Tools/Defer.pm                |   2 +-
 lib/Test2/Tools/Encoding.pm             |   2 +-
 lib/Test2/Tools/Event.pm                |   2 +-
 lib/Test2/Tools/Exception.pm            |   2 +-
 lib/Test2/Tools/Exports.pm              |   2 +-
 lib/Test2/Tools/Grab.pm                 |   2 +-
 lib/Test2/Tools/Mock.pm                 |   2 +-
 lib/Test2/Tools/Ref.pm                  |   2 +-
 lib/Test2/Tools/Subtest.pm              |   2 +-
 lib/Test2/Tools/Target.pm               |   2 +-
 lib/Test2/Tools/Warnings.pm             |   2 +-
 lib/Test2/Util/Grabber.pm               |   2 +-
 lib/Test2/Util/Ref.pm                   |   2 +-
 lib/Test2/Util/Stash.pm                 |   2 +-
 lib/Test2/Util/Sub.pm                   |   2 +-
 lib/Test2/Util/Table.pm                 |   2 +-
 lib/Test2/Util/Table/Cell.pm            |   2 +-
 lib/Test2/Util/Table/LineBreak.pm       |   2 +-
 lib/Test2/Util/Term.pm                  |   2 +-
 lib/Test2/{Bundle/Extended.pm => V0.pm} |  62 +++++++-------
 t/modules/{Bundle/Extended.t => V0.t}   |  18 ++--
 t/regression/Test2-Mock.t               |  45 ++++++++++
 t/regression/Test2-Tools-Class.t        |  17 ++++
 82 files changed, 310 insertions(+), 259 deletions(-)
 copy lib/Test2/{Bundle/Extended.pm => V0.pm} (88%)
 copy t/modules/{Bundle/Extended.t => V0.t} (86%)
 create mode 100644 t/regression/Test2-Mock.t
 create mode 100644 t/regression/Test2-Tools-Class.t

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libtest2-suite-perl.git



More information about the Pkg-perl-cvs-commits mailing list