The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#
# $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/t/GtkToggleToolButton.t,v 1.2.2.1 2004/03/17 02:47:13 muppetman Exp $
#

use Gtk2::TestHelper
	at_least_version => [2, 4, 0, "Action-based menus are new in 2.4"],
	tests => 4;

my $button = Gtk2::ToggleToolButton->new;
isa_ok ($button, 'Gtk2::ToggleToolButton');

$button = Gtk2::ToggleToolButton->new_from_stock ('gtk-ok');
isa_ok ($button, 'Gtk2::ToggleToolButton');

$button->set_active (TRUE);
ok ($button->get_active);

$button->set_active (FALSE);
ok (!$button->get_active);

__END__

Copyright (C) 2003 by the gtk2-perl team (see the file AUTHORS for the
full list).  See LICENSE for more information.