Skip Menu |

This queue is for tickets about the Log-Dispatch-Tk CPAN distribution.

Report information
The Basics
Id: 121482
Status: resolved
Priority: 0/
Queue: Log-Dispatch-Tk

People
Owner: Nobody in particular
Requestors: SREZIC [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 1.8
Fixed in: 1.9



Subject: Tests fail without a DISPLAY
See subject. Probably it's best to skip the tests if the main window could not be created, e.g. by using something like: my $mw = eval { MainWindow->new }; plan skip_all => "Cannot create main window: $@" if !$mw; plan tests => ...;
On Mon May 01 11:09:48 2017, SREZIC wrote: Show quoted text
> See subject. Probably it's best to skip the tests if the main window > could not be created, e.g. by using something like: > > my $mw = eval { MainWindow->new }; > plan skip_all => "Cannot create main window: $@" if !$mw; > plan tests => ...;
Yes. Applied. Thanks for the suggestion