The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#
# $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/t/GtkToggleAction.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 => 8;

my $action = Gtk2::ToggleAction->new;
isa_ok ($action, 'Gtk2::ToggleAction');

$action->signal_connect (toggled => sub { ok (TRUE) });
$action->toggled;


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

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


$action->set_draw_as_radio (TRUE);
ok ($action->get_draw_as_radio);

$action->set_draw_as_radio (FALSE);
ok (!$action->get_draw_as_radio);

__END__

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