The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl -w
use strict;
use Gtk2::TestHelper tests => 8;

# $Id$

my $button = Gtk2::CheckButton -> new();
isa_ok($button, "Gtk2::CheckButton");
is($button -> get("label"), undef);

$button = Gtk2::CheckButton -> new("_Bla");
isa_ok($button, "Gtk2::CheckButton");
is($button -> get("label"), "_Bla");

$button = Gtk2::CheckButton -> new_with_mnemonic("_Bla");
isa_ok($button, "Gtk2::CheckButton");
is($button -> get("label"), "_Bla");

$button = Gtk2::CheckButton -> new_with_label("Bla");
isa_ok($button, "Gtk2::CheckButton");
is($button -> get("label"), "Bla");

__END__

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