Scroll to navigation

Prima::sys::Test(3) User Contributed Perl Documentation Prima::sys::Test(3)

NAME

Prima::sys::Test - GUI test tools

DESCRIPTION

The module contains a small set or tool used for testing of Prima-related code together with standard perl "Test::" suite.

SYNOPSIS

        use Test::More;
        use Prima::Test;
        plan tests => 1;
        ok( create_window, "can create window");

USAGE

Methods

Creates a standard simple Prima window, returns its handle
These manipulate the state of an internal $flag that stops event loop when set.
Waits for the flag to be raised in 500 msec, or returns false.

no-X11 environment

By default fires skip_all condition if running without X11 connection. If the test can be ran without X11, use as:

        use Prima::Test qw(noX11);

which signals the module not to do any GUI initialization.

AUTHORS

Upasana Shukla, <me@upasana.me>, Dmitry Karasik, <dmitry@karasik.eu.org>.

SEE ALSO

Prima, t/*/*.t

2023-09-05 perl v5.26.1