use 5.006; use strict; use warnings FATAL => 'all'; use Test::More; BEGIN { use_ok( 'AdminPanel::rpmdragora' ) || print "AdminPanel::rpmdragora failed!\n"; } SKIP: { #remember to skip the righ number of tests skip "To enable dialog tests set TEST_GUI", 1, unless $ENV{TEST_GUI}; ok( interactive_msg( "Interactive msg title", join( "\n\n", "text line 1", "text line 2", "text line 3", "set yesno => 1 to have a yesno dialog otherwhise just ok button is shown", "press ok to continue"), scroll => 1, ), 'interactive_msg', ); } done_testing;