logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Test::Data -- test functions for particular variable types

Author

       brian d foy, "<briandfoy@pobox.com>"

Bugs

       I'm not a very good Windows Perler, so some things don't work as they should on Windows. I recently got a
       Windows box so I can test things, but if you run into problems, I can use all the patches or advice you
       care to send.

Description

       Test::Data provides utility functions to check properties and values of data and variables.

   Functions
       Plug-in modules define functions for each data type.  See the appropriate module.

   Howitworks
       The Test::Data module simply emports functions from Test::Data::* modules.  Each module defines a self-
       contained function, and puts that function name into @EXPORT.  Test::Data defines its own import
       function, but that does not matter to the plug-in modules.

       If you want to write a plug-in module, follow the example of one that already exists.   Name the module
       Test::Data::Foo, where you replace Foo with the right name.  Test::Data should automatically find it.

Name

       Test::Data -- test functions for particular variable types

See Also

       Test::Data::Scalar, Test::Data::Array, Test::Data::Hash, Test::Data::Function, Test::Builder

Source Availability

       This source is in Github:

               https://github.com/briandfoy/test-data

Synopsis

       use Test::Data qw(Scalar Array Hash Function);

See Also