dotReader
view release on metacpan or search on metacpan
t/_gui/loadbook.gt view on Meta::CPAN
EVT_IDLE
EVT_TREE_SEL_CHANGED
EVT_TREE_SEL_CHANGING
EVT_TREE_ITEM_EXPANDED
);
#BEGIN {
#use inc::loginit;
#}
my $package = require("./client/app.pl");
# NOTE: crash will typically happen here. If it does, we're dead in
# the water (probably a syntax error.)
my $app = eval {$package->new(); };
ok((not $@), "$package constructor") or
BAIL_OUT("error: " . join('\n', split(/\n+/, $@)));
local $SIG{__WARN__};
my $main_frame = $package->_main_frame;
t/_gui/loadbook_file-open.gt view on Meta::CPAN
use constant { D => 0 };
use Wx;
use Wx::Event qw(
EVT_IDLE
EVT_TREE_SEL_CHANGED
EVT_TREE_SEL_CHANGING
EVT_TREE_ITEM_EXPANDED
);
my $package = require("./client/app.pl");
# NOTE: crash will typically happen here. If it does, we're dead in
# the water (probably a syntax error.)
my $app = eval {$package->new(); };
ok((not $@), "$package constructor") or
BAIL_OUT("error: " . join('\n', split(/\n+/, $@)));
my $main_frame = $package->_main_frame;
local $SIG{__WARN__};
########################################################################
( run in 0.246 second using v1.01-cache-2.11-cpan-05444aca049 )