The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

#!/usr/bin/perl -w
use strict;
use Test::More qw( no_plan );
use Gtk2 '-init';
use_ok 'Gapp::VBox';
my $w = Gapp::VBox->new;
ok $w, 'created gapp widget';
ok $w->gtk_widget, 'created gtk widget';