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

gregoa pushed a change to branch master
in repository libtest-deep-perl.

      from  2c44e76   update changelog
      adds  beb12d0   fix typo in changelog
      adds  73f2cdd   fix docs for noclass()
      adds  d0c2adb   fix a typo in docs
      adds  eb6a2f6   use qr objects and not strings in examples
      adds  379f4d5   Fix mis-semi-colon'ed example in POD for ignore().
      adds  6927067   cmp_deeply: Express pluggability of the function more 
clearly
      adds  fd2fb80   Re-label function headings to be linkable.
      adds  716bbb8   Link cmp_deeply to SPECIAL COMPARISONS section
      adds  5586ea0   Group bag comparison functions
      adds  7759e15   Group Hash comparison functions
      adds  a5c2076   Group SET comparisons
      adds  d9b3d5b   Move the special care section to a dedicated section
      adds  13236d5   Overhaul Set documentation, aggregating common behaviour 
into the heading
      adds  735761d   Overhaul bag documentation, aggregating common behaviour 
into the heading
      adds  4437187   Tidy up Hash comparisons section
      adds  716d032   fix some English
      adds  d8106f8   further Pod and doc tweaks, largely adding C<>s
      adds  b249b1b   tabs to spaces
      adds  458007b   bump version for a dev release
      adds  21733e6   Prevent action-at-a-distance from clobbered $@.
      adds  e25bcd2   avoid an eval{$_->isa} when we can use blessed()
      adds  bf66ed8   changelog for new trial release
      adds  5627e7f   documentation: Replace "set" with "bag" in a few places.
      adds  fdba880   add a setting for more easily testing objs with eq
      adds  8f1065c   make a more generic solution to preferring eq
      adds  ad6f57c   bump version for release
      adds  9c2d005   when $obj =~ re(...) fails, show "$obj"
      adds  b2ec171   stop relying on . in @INC
      adds  06e6603   bump version for new release
      adds  c6fd411   MANIFEST: update location of Over and Std
      adds  9cb33a3   New upstream version 1.123
       new  b33ffcd   Updated version 1.123 from 'upstream/1.123'
       new  6498fbe   Update debian/changelog
       new  09308a7   Declare compliance with Debian Policy 3.9.8.
       new  978908c   releasing package libtest-deep-perl version 1.123-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                            |   21 +-
 MANIFEST                           |    6 +-
 META.json                          |    4 +-
 META.yml                           |    6 +-
 TODO                               |    6 +-
 debian/changelog                   |    7 +-
 debian/control                     |    2 +-
 lib/Test/Deep.pm                   | 1222 +++++++++++++++++++++---------------
 lib/Test/Deep/All.pm               |   49 +-
 lib/Test/Deep/Any.pm               |   49 +-
 lib/Test/Deep/Array.pm             |   20 +-
 lib/Test/Deep/ArrayEach.pm         |   16 +-
 lib/Test/Deep/ArrayElementsOnly.pm |   42 +-
 lib/Test/Deep/ArrayLength.pm       |   16 +-
 lib/Test/Deep/ArrayLengthOnly.pm   |   36 +-
 lib/Test/Deep/Blessed.pm           |   28 +-
 lib/Test/Deep/Boolean.pm           |   26 +-
 lib/Test/Deep/Cache.pm             |   62 +-
 lib/Test/Deep/Cache/Simple.pm      |   66 +-
 lib/Test/Deep/Class.pm             |   18 +-
 lib/Test/Deep/Cmp.pm               |   64 +-
 lib/Test/Deep/Code.pm              |   28 +-
 lib/Test/Deep/Hash.pm              |   64 +-
 lib/Test/Deep/HashEach.pm          |   16 +-
 lib/Test/Deep/HashElements.pm      |   64 +-
 lib/Test/Deep/HashKeys.pm          |   44 +-
 lib/Test/Deep/HashKeysOnly.pm      |  124 ++--
 lib/Test/Deep/Ignore.pm            |    4 +-
 lib/Test/Deep/Isa.pm               |   26 +-
 lib/Test/Deep/ListMethods.pm       |   10 +-
 lib/Test/Deep/MM.pm                |   78 +--
 lib/Test/Deep/Methods.pm           |   82 +--
 lib/Test/Deep/None.pm              |   50 +-
 lib/Test/Deep/Number.pm            |   88 +--
 lib/Test/Deep/Obj.pm               |   24 +-
 lib/Test/Deep/Ref.pm               |   34 +-
 lib/Test/Deep/RefType.pm           |   26 +-
 lib/Test/Deep/Regexp.pm            |  113 ++--
 lib/Test/Deep/RegexpMatches.pm     |   30 +-
 lib/Test/Deep/RegexpOnly.pm        |   26 +-
 lib/Test/Deep/RegexpRef.pm         |   30 +-
 lib/Test/Deep/RegexpRefOnly.pm     |   24 +-
 lib/Test/Deep/ScalarRef.pm         |   18 +-
 lib/Test/Deep/ScalarRefOnly.pm     |   20 +-
 lib/Test/Deep/Set.pm               |  234 +++----
 lib/Test/Deep/Shallow.pm           |   64 +-
 lib/Test/Deep/Stack.pm             |   66 +-
 lib/Test/Deep/String.pm            |   18 +-
 t/all.t                            |   87 +--
 t/any.t                            |   85 +--
 t/array.t                          |  107 ++--
 t/array_each.t                     |   45 +-
 t/arraylength.t                    |  151 ++---
 t/bag.t                            |  391 ++++++------
 t/bagrecursion.t                   |    3 +-
 t/blessed.t                        |   85 +--
 t/boolean.t                        |   69 +-
 t/cache.t                          |   40 +-
 t/circular.t                       |  207 +++---
 t/class.t                          |  145 ++---
 t/code.t                           |   93 +--
 t/deep_utils.t                     |   24 +-
 t/descend.t                        |  205 +++---
 t/error.t                          |   21 +-
 t/hash.t                           |  135 ++--
 t/hash_each.t                      |   57 +-
 t/hashkeys.t                       |  103 +--
 t/ignore.t                         |   23 +-
 t/isa.t                            |  223 +++----
 t/{over.pm => lib/Over.pm}         |   10 +-
 t/{std.pm => lib/Std.pm}           |    0
 t/listmethods.t                    |  201 +++---
 t/memory.t                         |    4 +-
 t/methods.t                        |  237 +++----
 t/none.t                           |  101 +--
 t/number.t                         |  167 ++---
 t/reftype.t                        |   43 +-
 t/regexp.t                         |  280 +++++----
 t/regexp.t.orig                    |   60 ++
 t/regexpref.t                      |   43 +-
 t/rt78288_blessed_object.t         |    3 +-
 t/scalar.t                         |   85 +--
 t/scalarref.t                      |   63 +-
 t/set.t                            |  451 ++++++-------
 t/shallow.t                        |  170 +++--
 t/string.t                         |   87 +--
 86 files changed, 3951 insertions(+), 3524 deletions(-)
 rename t/{over.pm => lib/Over.pm} (55%)
 rename t/{std.pm => lib/Std.pm} (100%)
 create mode 100644 t/regexp.t.orig

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

_______________________________________________
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits

Reply via email to