Scroll to navigation

Test::Data::Scalar(3pm) User Contributed Perl Documentation Test::Data::Scalar(3pm)

NAME

Test::Data::Scalar -- test functions for scalar variables

SYNOPSIS

        use Test::Data qw(Scalar);

DESCRIPTION

This modules provides a collection of test utilities for scalar variables. Load the module through Test::Data.

Functions

Ok if the SCALAR is a blessed reference.
Ok if the SCALAR is defined.
Ok if the SCALAR is undefined.
Ok if the scalar is a dualvar.

How do I test this?

Ok if the SCALAR is numerically greater than BOUND.
Ok if the length of SCALAR is LENGTH.
Ok if the SCALAR is numerically less than BOUND.
Ok is the length of SCALAR is less than or equal to LENGTH.
Ok is the length of SCALAR is greater than or equal to LENGTH.
Ok if the SCALAR is a number ( or a string that represents a number ).

At the moment, a number is just a string of digits. This needs work.

Ok if the number in SCALAR sorts between the number in LOWER and the number in UPPER, numerically.

If you put something that isn't a number into UPPER or LOWER, Perl will try to make it into a number and you may get unexpected results.

Ok if the string in SCALAR sorts between the string in LOWER and the string in UPPER, ASCII-betically.
Ok is the SCALAR is read-only.
Ok if the SCALAR is a reference.
Ok if REF1 is the same reference type as REF2.
Ok is the SCALAR is not a weak reference.
Ok is the SCALAR is tainted.

(Tainted values may seem like a not-Ok thing, but remember, when you use taint checking, you want Perl to taint data, so you should have a test to make sure it happens.)

Ok if the SCALAR is not tainted.
Ok if the SCALAR is a weak reference.

TO DO

* add is_a_filehandle test

* add is_vstring test

SEE ALSO

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

SOURCE AVAILABILITY

This source is in Github:

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

AUTHOR

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

COPYRIGHT AND LICENSE

Copyright © 2002-2024, brian d foy <briandfoy@pobox.com>. All rights reserved.

This program is free software; you can redistribute it and/or modify it under the terms of the Artistic License 2.0.

2024-03-16 perl v5.38.2