Gtk2-Ex-ComboBoxBits
view release on metacpan or search on metacpan
t/Enum-weaken.t view on Meta::CPAN
# Copyright 2010, 2011 Kevin Ryde
# This file is part of Gtk2-Ex-ComboBoxBits.
#
# Gtk2-Ex-ComboBoxBits is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as published
# by the Free Software Foundation; either version 3, or (at your option) any
# later version.
#
# Gtk2-Ex-ComboBoxBits is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
# Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with Gtk2-Ex-ComboBoxBits. If not, see <http://www.gnu.org/licenses/>.
# Tests of Gtk2::Ex::ComboBox::Enum requiring Test::Weaken (and also a
# DISPLAY).
use 5.008;
use strict;
use warnings;
use Test::More;
use lib 't';
use MyTestHelpers;
use Test::Weaken::ExtraBits;
BEGIN { MyTestHelpers::nowarnings() }
require Gtk2::Ex::ComboBox::Enum;
require Gtk2;
Gtk2->disable_setlocale; # leave LC_NUMERIC alone for version nums
Gtk2->init_check
or plan skip_all => 'due to no DISPLAY available';
# Test::Weaken 3 for "contents"
eval "use Test::Weaken 3; 1"
or plan skip_all => "due to Test::Weaken 3 not available -- $@";
eval "use Test::Weaken::Gtk2; 1"
or plan skip_all => "due to Test::Weaken::Gtk2 not available -- $@";
plan tests => 1;
{
my $leaks = Test::Weaken::leaks
({ constructor => sub {
my $toplevel = Gtk2::Window->new ('toplevel');
my $combo = Gtk2::Ex::ComboBox::Enum->new;
$toplevel->add ($combo);
$toplevel->show_all;
return $toplevel;
},
destructor => \&Test::Weaken::Gtk2::destructor_destroy,
contents => \&Test::Weaken::Gtk2::contents_container,
});
is ($leaks, undef, 'Test::Weaken deep garbage collection');
MyTestHelpers::test_weaken_show_leaks($leaks);
}
exit 0;
( run in 2.795 seconds using v1.01-cache-2.11-cpan-b16cb0d3907 )