The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
use strict;
use warnings;
use Test::Most;
use Gtk2;
use App::TimeTracker::Gtk2TrayIcon;

SKIP: {
    skip 'Gtk2->init_check failed, probably unable to open DISPLAY', 1 unless Gtk2->init_check;

    lives_ok {
        App::TimeTracker::Gtk2TrayIcon->init;
    } 'init seems to work';
}

done_testing();